yw5ncom/nginx.conf

15 lines
229 B
Nginx Configuration File
Raw Normal View History

2024-09-10 16:12:26 +00:00
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
2024-09-25 06:10:23 +00:00
location /static/ {
root /usr/share/nginx/;
}
2024-09-10 16:12:26 +00:00
}