The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

56 líneas
1.2 KiB

  1. #
  2. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  3. #
  4. # Insert additional firewall rules to allow required services to function
  5. - name: Allow HTTP
  6. iptables:
  7. chain: INPUT
  8. action: insert
  9. rule_num: 5
  10. protocol: tcp
  11. destination_port: 80
  12. ctstate: NEW
  13. syn: match
  14. jump: ACCEPT
  15. comment: Accept new HTTP connections
  16. become: yes
  17. - name: Allow HTTPS
  18. iptables:
  19. chain: INPUT
  20. action: insert
  21. rule_num: 6
  22. protocol: tcp
  23. destination_port: 443
  24. ctstate: NEW
  25. syn: match
  26. jump: ACCEPT
  27. comment: Accept new HTTPS connections
  28. become: yes
  29. - name: Allow admin HTTPS on port {{ ssl_port }}
  30. iptables:
  31. chain: INPUT
  32. action: insert
  33. rule_num: 7
  34. protocol: tcp
  35. destination_port: "{{ ssl_port }}"
  36. ctstate: NEW
  37. syn: match
  38. jump: ACCEPT
  39. comment: Accept new admin SSL connections
  40. become: yes
  41. - name: Allow admin HTTP on port 1080
  42. iptables:
  43. chain: INPUT
  44. action: insert
  45. rule_num: 8
  46. protocol: tcp
  47. destination_port: "1080"
  48. ctstate: NEW
  49. syn: match
  50. jump: ACCEPT
  51. comment: Accept new admin SSL connections
  52. become: yes