backend_and_cms/frontend/nginx.conf

12 lines
188 B
Nginx Configuration File
Raw Normal View History

2024-09-17 12:11:39 +08:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}