update nginx patches for discourse 3.5.0
This commit is contained in:
parent
76356711d6
commit
31455e8f77
1 changed files with 20 additions and 21 deletions
|
@ -2,6 +2,25 @@ run:
|
||||||
- exec:
|
- exec:
|
||||||
cmd:
|
cmd:
|
||||||
- "mkdir -p /shared/ssl/"
|
- "mkdir -p /shared/ssl/"
|
||||||
|
- replace:
|
||||||
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
||||||
|
from: /listen 80;\s+listen \[::\]:80;/m
|
||||||
|
to: |
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
SSL_TEMPLATE_SSL_BLOCK
|
||||||
|
- replace:
|
||||||
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
||||||
|
from: /listen 80;/m
|
||||||
|
to: |
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
# ITS: Stuff for yxorp TLS-SNI support
|
||||||
|
listen 444 ssl proxy_protocol;
|
||||||
|
listen [::]:444 ssl proxy_protocol;
|
||||||
|
set_real_ip_from 2a01:4f8:10b:331f:0:ff:fe00:5;
|
||||||
|
real_ip_header proxy_protocol;
|
||||||
|
SSL_TEMPLATE_SSL_BLOCK
|
||||||
- replace:
|
- replace:
|
||||||
filename: "/etc/nginx/conf.d/discourse.conf"
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
||||||
from: /server.+{/
|
from: /server.+{/
|
||||||
|
@ -11,30 +30,12 @@ run:
|
||||||
return 301 https://$$ENV_DISCOURSE_HOSTNAME$request_uri;
|
return 301 https://$$ENV_DISCOURSE_HOSTNAME$request_uri;
|
||||||
}
|
}
|
||||||
server {
|
server {
|
||||||
- replace:
|
|
||||||
filename: "/etc/nginx/conf.d/discourse.conf"
|
|
||||||
from: /listen 80;\s+gzip on;/m
|
|
||||||
to: |
|
|
||||||
listen 443 ssl http2;
|
|
||||||
listen [::]:443 ssl http2;
|
|
||||||
# ITS: Stuff for yxorp TLS-SNI support
|
|
||||||
listen 444 ssl http2 proxy_protocol;
|
|
||||||
listen [::]:444 ssl http2 proxy_protocol;
|
|
||||||
set_real_ip_from 2a01:4f8:10b:331f:0:ff:fe00:5;
|
|
||||||
real_ip_header proxy_protocol;
|
|
||||||
SSL_TEMPLATE_SSL_BLOCK
|
|
||||||
- replace:
|
|
||||||
filename: "/etc/nginx/conf.d/discourse.conf"
|
|
||||||
from: /listen 80;\s+listen \[::\]:80;\s+gzip on;/m
|
|
||||||
to: |
|
|
||||||
listen 443 ssl http2;
|
|
||||||
listen [::]:443 ssl http2;
|
|
||||||
SSL_TEMPLATE_SSL_BLOCK
|
|
||||||
- replace:
|
- replace:
|
||||||
hook: ssl
|
hook: ssl
|
||||||
filename: "/etc/nginx/conf.d/discourse.conf"
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
||||||
from: /SSL_TEMPLATE_SSL_BLOCK/
|
from: /SSL_TEMPLATE_SSL_BLOCK/
|
||||||
to: |
|
to: |
|
||||||
|
http2 on;
|
||||||
|
|
||||||
ssl_protocols TLSv1.2 TLSv1.3;
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
||||||
|
@ -47,8 +48,6 @@ run:
|
||||||
ssl_session_timeout 1d;
|
ssl_session_timeout 1d;
|
||||||
ssl_session_cache shared:SSL:1m;
|
ssl_session_cache shared:SSL:1m;
|
||||||
|
|
||||||
gzip on;
|
|
||||||
|
|
||||||
add_header Strict-Transport-Security 'max-age=31536000'; # remember the certificate for a year and automatically connect to HTTPS for this domain
|
add_header Strict-Transport-Security 'max-age=31536000'; # remember the certificate for a year and automatically connect to HTTPS for this domain
|
||||||
|
|
||||||
if ($http_host != $$ENV_DISCOURSE_HOSTNAME) {
|
if ($http_host != $$ENV_DISCOURSE_HOSTNAME) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue