Merge pull request #133 from RichardAlmanza/master

fix(nginx): add ipv6 listen property to nginx service conf
This commit is contained in:
David Montero Crespo 2026-05-02 19:16:18 -03:00 committed by GitHub
commit 1aeebb9cad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
server {
listen 80;
listen [::]:80;
server_name localhost velxio.dev www.velxio.dev;
root /usr/share/nginx/html;
index index.html;

View File

@ -1,5 +1,6 @@
server {
listen 80;
listen [::]:80;
server_name velxio.dev www.velxio.dev;
root /usr/share/nginx/html;
index index.html;