mobitter/nginx.conf

10 lines
153 B
Nginx Configuration File
Raw Permalink Normal View History

2023-01-20 16:35:15 +00:00
server {
listen 8080;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}