Files
nginx/rootfs/etc/nginx/conf.d/default.conf
2025-02-05 16:52:18 +03:00

10 lines
144 B
Plaintext

server {
listen 8080;
server_name localhost;
location / {
root /srv;
index index.html index.htm;
}
}