fix: nginx listen on all interfaces for Docker

This commit is contained in:
kinou-p 2025-10-02 17:13:41 +02:00
parent 86a126bc41
commit 26f4d14f9f

View File

@ -36,7 +36,8 @@ http {
server { server {
listen 80; listen 80;
server_name localhost; listen [::]:80;
server_name _;
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html; index index.html;