mtfosbot_web/nginx.conf

19 lines
297 B
Nginx Configuration File
Raw Normal View History

2018-08-24 12:30:28 +00:00
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
root /data;
index index.html;
location ^~ $$prefix$$/ {
alias /data/;
}
location / {
try_files $uri $uri/ /index.html;
}
}