Files
Docker-Composes/NginxLocal/conf/default.conf
Alejandro Sarmiento 798a8214a7 NginxLocal
2024-03-05 21:26:01 +01:00

11 lines
164 B
Plaintext

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}