argos/dmp-frontend/nginx-custom.conf

16 lines
283 B
Plaintext
Raw Permalink Normal View History

2018-06-27 12:29:21 +02:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
2018-10-02 16:33:58 +02:00
location /material/ {
alias /usr/share/nginx/static/;
}
location /.well-known/ {
alias /usr/share/nginx/wwwcert/;
}
2018-06-27 12:29:21 +02:00
}