The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 regels
818 B

  1. # Insert additional firewall rules to allow required services to function
  2. - name: Allow HTTP
  3. iptables:
  4. chain: INPUT
  5. action: insert
  6. rule_num: 5
  7. protocol: tcp
  8. destination_port: 80
  9. ctstate: NEW
  10. syn: match
  11. jump: ACCEPT
  12. comment: Accept new HTTP connections
  13. become: yes
  14. - name: Allow HTTPS
  15. iptables:
  16. chain: INPUT
  17. action: insert
  18. rule_num: 6
  19. protocol: tcp
  20. destination_port: 443
  21. ctstate: NEW
  22. syn: match
  23. jump: ACCEPT
  24. comment: Accept new HTTPS connections
  25. become: yes
  26. - name: Allow admin HTTPS on port {{ ssl_port }}
  27. iptables:
  28. chain: INPUT
  29. action: insert
  30. rule_num: 7
  31. protocol: tcp
  32. destination_port: "{{ ssl_port }}"
  33. ctstate: NEW
  34. syn: match
  35. jump: ACCEPT
  36. comment: Accept new admin SSL connections
  37. become: yes