Fix TLS in socketed template (#925)
After 7d548ad4ae
, the replacement pattern in web.socketed.template.yml no longer matches, making nginx.https.sock not exist.
As such, remove the `http2` field from the `listen` directive to match aforementioned commit.
This commit is contained in:
parent
79ccbcc532
commit
79724e9e28
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ run:
|
|||
set_real_ip_from unix:;
|
||||
- replace:
|
||||
filename: "/etc/nginx/conf.d/discourse.conf"
|
||||
from: /listen 443 ssl http2;/
|
||||
from: /listen 443 ssl;/
|
||||
to: |
|
||||
listen unix:/shared/nginx.https.sock ssl http2;
|
||||
listen unix:/shared/nginx.https.sock ssl;
|
||||
set_real_ip_from unix:;
|
||||
|
|
Loading…
Add table
Reference in a new issue