Proxy Protocol on port 8443
This commit is contained in:
parent
a715d97660
commit
b19b256b52
1 changed files with 4 additions and 4 deletions
|
@ -10,11 +10,9 @@ http {
|
|||
include rate-limiting.conf;
|
||||
|
||||
server {
|
||||
include proxy-protocol.conf;
|
||||
|
||||
include server-base.conf;
|
||||
|
||||
listen 443 default proxy_protocol;
|
||||
listen 443 default;
|
||||
|
||||
ssl on;
|
||||
ssl_certificate ./stack/ssl.cert;
|
||||
|
@ -26,9 +24,11 @@ http {
|
|||
}
|
||||
|
||||
server {
|
||||
include proxy-protocol.conf;
|
||||
|
||||
include server-base.conf;
|
||||
|
||||
listen 444 default;
|
||||
listen 8443 default proxy_protocol;
|
||||
|
||||
ssl on;
|
||||
ssl_certificate ./stack/ssl.cert;
|
||||
|
|
Reference in a new issue