Files
avue-datav/docker/nginx.conf
aixianling e6a0613681 init
2024-09-20 12:02:02 +08:00

11 lines
216 B
Nginx Configuration File

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