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.

4 年之前
4 年之前
12345678910111213
  1. server {
  2. server_name {{ server_name }} {{ server_alias }};
  3. listen {{ ssl_port }} ssl http2;
  4. ssl_certificate /etc/letsencrypt/live/{{ server_name }}/fullchain.pem;
  5. ssl_certificate_key /etc/letsencrypt/live/{{ server_name }}/privkey.pem;
  6. location / {
  7. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  8. proxy_pass http://127.0.0.1:{{ admin_port }}/;
  9. }
  10. }