Vmeda.Online/nginx.conf

12 lines
176 B
Nginx Configuration File
Raw Normal View History

2021-05-04 07:30:08 +00:00
server {
listen 0.0.0.0:80;
root /usr/share/nginx/html;
server_tokens off;
access_log off;
location / {
try_files $uri $uri/ /index.html;
}
}