Files
Compose-Files/Docker-Compose/nginx/files/config/default.conf
T
2026-07-23 19:38:14 -04:00

10 lines
134 B
Plaintext

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