S JavaScriptem funguje tato webová stránka lépe.
Domů
Procházet
Nápověda
Přihlásit se
bubblev
/
bubble
Sledovat
9
Oblíbit
0
Rozštěpit
0
Zdrojový kód
Úkoly
0
Požadavky na natažení
0
Vydání
130
Wiki
Aktivita
Procházet zdrojové kódy
fix nginx config for single-page app
tags/v0.1.8
Jonathan Cobb
před 5 roky
rodič
edf3798b81
revize
ca0b1d7730
4 změnil soubory
, kde provedl
16 přidání
a
4 odebrání
Rozdělené zobrazení
Diff Options
Zobrazit statistiky
Stáhněte soubor opravy
Stáhněte rozdílový soubor
+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
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -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 {
Zapsat
Náhled
Načítá se…
Zrušit
Uložit