quotes-server/docker/frontend.conf

19 lines
369 B
Text
Raw Permalink Normal View History

2017-01-25 10:20:39 +01:00
server {
listen 0.0.0.0:80 default_server;
listen 0.0.0.0:8888;
server_name _;
root /quotes-frontend;
location /quotes {
index index.html index.htm;
alias /quotes-frontend;
try_files $uri $uri/ $uri.html =404;
}
location / {
index index.html index.htm;
try_files $uri $uri/ $uri.html =404;
}
}