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/;
|
|
|
|
}
|
2018-10-05 08:56:50 +02:00
|
|
|
|
|
|
|
location /.well-known/ {
|
|
|
|
alias /usr/share/nginx/wwwcert/;
|
|
|
|
}
|
2018-06-27 12:29:21 +02:00
|
|
|
}
|