ft_onion/nginx.conf

10 lines
164 B
Nginx Configuration File

server {
listen 80;
server_name
location / {
root /var/www/html;
index index.html index.htm;
try_files $uri $uri/ =404;
}
}