remove trailing slash
This commit is contained in:
parent
0e9aadad55
commit
d6b5280227
1 changed files with 2 additions and 2 deletions
|
|
@ -13,11 +13,11 @@ http {
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 3000;
|
listen 0.0.0.0:3000;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
root /home/static/public;
|
root /home/static/public;
|
||||||
try_files $uri $uri/ =404;
|
try_files $uri $uri/index.html $uri/ =404;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
types {
|
types {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue