The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

13 righe
384 B

  1. server {
  2. server_name {{ server_name }};
  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. }