mtfosbot_web/nginx.conf
2018-08-24 13:36:34 +00:00

19 lines
294 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
root /data;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ^~ $$prefix$$/ {
alias /data/;
}
}