logmower-frontend/nginx.conf

10 lines
153 B
Nginx Configuration File
Raw Normal View History

2022-10-31 21:12:25 +00:00
server {
listen 8080;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}