NavigateX/nginx.conf

9 lines
112 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
root /srv;
index Home.html;
}
}