mnisyif_frontend/nginx.conf

16 lines
No EOL
223 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}
events {
worker_connections 1024;
}