Files
Compose-Files/Docker/nginx/files/config/default.conf
T
2026-07-20 09:23:17 -04:00

10 lines
134 B
Plaintext

server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html;
access_log on;
}
}