1
0
Fork 0

feat: add ipv6 enable for openresty

This commit is contained in:
zhengkunwang223 2025-03-12 16:53:27 +08:00 committed by CityFun
parent 56b78dca51
commit 4759c8ff71
1 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,9 @@
server
{
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
index 404.html;
root /usr/share/nginx/html;
}
}