Skip to content

Commit

Permalink
Let nginx listen on IPv6 - see also pimcore/skeleton#74
Browse files Browse the repository at this point in the history
  • Loading branch information
brusch committed Nov 11, 2021
1 parent 1b781c8 commit e8a2094
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .docker/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ upstream php-pimcore10-debug {
}

server {
listen 80 default_server ;
listen [::]:80 default_server;
listen 80 default_server;

#server_name pimcore.localhost;
root /var/www/html/public;
index index.php;
Expand Down

0 comments on commit e8a2094

Please sign in to comment.