mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-21 11:05:56 +00:00
add IPv6 Support for NGINX reverse proxy
parent
b5bcd89a7c
commit
637a82bf7c
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ With SSL:
|
||||||
```nginx
|
```nginx
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2;
|
#listen [::]:443 ssl http2;
|
||||||
server_name sub.domain.com;
|
server_name sub.domain.com;
|
||||||
ssl_certificate /path/to/ssl/cert/crt;
|
ssl_certificate /path/to/ssl/cert/crt;
|
||||||
ssl_certificate_key /path/to/ssl/key/key;
|
ssl_certificate_key /path/to/ssl/key/key;
|
||||||
|
@ -47,7 +47,7 @@ Without SSL:
|
||||||
```nginx
|
```nginx
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
listen [::]:80;
|
#listen [::]:80;
|
||||||
server_name sub.domain.com;
|
server_name sub.domain.com;
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://localhost:3001;
|
proxy_pass http://localhost:3001;
|
||||||
|
|
Loading…
Add table
Reference in a new issue