mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
add IPv6 Support for NGINX reverse proxy
parent
637a82bf7c
commit
24f0fd299b
1 changed files with 4 additions and 2 deletions
|
@ -26,7 +26,8 @@ With SSL:
|
|||
```nginx
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
#listen [::]:443 ssl http2;
|
||||
# Remove '#' in the next line to enable IPv6
|
||||
# listen [::]:443 ssl http2;
|
||||
server_name sub.domain.com;
|
||||
ssl_certificate /path/to/ssl/cert/crt;
|
||||
ssl_certificate_key /path/to/ssl/key/key;
|
||||
|
@ -47,7 +48,8 @@ Without SSL:
|
|||
```nginx
|
||||
server {
|
||||
listen 80;
|
||||
#listen [::]:80;
|
||||
# Remove '#' in the next line to enable IPv6
|
||||
# listen [::]:80;
|
||||
server_name sub.domain.com;
|
||||
location / {
|
||||
proxy_pass http://localhost:3001;
|
||||
|
|
Loading…
Reference in a new issue