Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
bubblev
/
bubble
Segui
9
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
130
Wiki
Attività
Sfoglia il codice sorgente
fix nginx config for single-page app
tags/v0.1.8
Jonathan Cobb
5 anni fa
parent
edf3798b81
commit
ca0b1d7730
4 ha cambiato i file
con
16 aggiunte
e
4 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+4
-1
automation/roles/nginx/templates/site_node.conf.j2
+4
-1
automation/roles/nginx/templates/site_node_alias.conf.j2
+4
-1
automation/roles/nginx/templates/site_sage.conf.j2
+4
-1
automation/roles/nginx/templates/site_sage_alias.conf.j2
+ 4
- 1
automation/roles/nginx/templates/site_node.conf.j2
Vedi File
@@ -2,8 +2,11 @@ server {
server_name {{ server_name }};
listen {{ ssl_port }} ssl http2;
root /home/bubble/site/;
index index.html;
location / {
root /home/bubble/site/;
try_files $uri /index.html =404
;
}
location /api {
+ 4
- 1
automation/roles/nginx/templates/site_node_alias.conf.j2
Vedi File
@@ -2,8 +2,11 @@ server {
server_name {{ server_alias }};
listen {{ ssl_port }} ssl http2;
root /home/bubble/site/;
index index.html;
location / {
root /home/bubble/site/;
try_files $uri /index.html =404
;
}
location /api {
+ 4
- 1
automation/roles/nginx/templates/site_sage.conf.j2
Vedi File
@@ -2,8 +2,11 @@ server {
listen 80;
server_name {{ server_name }};
root /home/bubble/site/;
index index.html;
location / {
root /home/bubble/site/;
try_files $uri /index.html =404
;
}
location /api {
+ 4
- 1
automation/roles/nginx/templates/site_sage_alias.conf.j2
Vedi File
@@ -2,8 +2,11 @@ server {
listen 80;
server_name {{ server_alias }};
root /home/bubble/site/;
index index.html;
location / {
root /home/bubble/site/;
try_files $uri /index.html =404
;
}
location /api {
Scrivi
Anteprima
Caricamento…
Annulla
Salva