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.
25 lines
656 B
YAML
25 lines
656 B
YAML
run:
|
|
- file:
|
|
path: /etc/runit/1.d/remove-old-socket
|
|
chmod: "+x"
|
|
contents: |
|
|
#!/bin/bash
|
|
rm -f /shared/nginx.http*.sock
|
|
- file:
|
|
path: /etc/runit/3.d/remove-old-socket
|
|
chmod: "+x"
|
|
contents: |
|
|
#!/bin/bash
|
|
rm -rf /shared/nginx.http*.sock
|
|
- replace:
|
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
|
from: /listen 80;/
|
|
to: |
|
|
listen unix:/shared/nginx.http.sock;
|
|
set_real_ip_from unix:;
|
|
- replace:
|
|
filename: "/etc/nginx/conf.d/discourse.conf"
|
|
from: /listen 443 ssl;/
|
|
to: |
|
|
listen unix:/shared/nginx.https.sock ssl;
|
|
set_real_ip_from unix:;
|