diff options
| author | 2026-05-02 20:28:02 +0700 | |
|---|---|---|
| committer | 2026-05-02 20:28:02 +0700 | |
| commit | 507bcbac6b1bf9f1a731afbe82bec10700f4028c (patch) | |
| tree | 8ccb5aed1ebe5a19d8c2f082967fcdf9184f4f2e /config | |
| parent | 179cf888d20537a5f6e581256be95ad1e2f92d6b (diff) | |
| download | web-507bcbac6b1bf9f1a731afbe82bec10700f4028c.tar.gz web-507bcbac6b1bf9f1a731afbe82bec10700f4028c.zip | |
feat: integrate unix sockets into stage & prod
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.prod.yaml | 5 | ||||
| -rw-r--r-- | config/config.stage.yaml | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/config/config.prod.yaml b/config/config.prod.yaml index 0b45e1a..2daa3ff 100644 --- a/config/config.prod.yaml +++ b/config/config.prod.yaml @@ -1,8 +1,9 @@ logLevel: info endpoint: - type: http + type: unix config: - listenOn: ":3000" + path: "/etc/sayauz/prod.socket" + chmod: '0666' blogPages: storage: type: b2 diff --git a/config/config.stage.yaml b/config/config.stage.yaml index 23b76aa..151bb4a 100644 --- a/config/config.stage.yaml +++ b/config/config.stage.yaml @@ -1,8 +1,9 @@ logLevel: debug endpoint: - type: http + type: unix config: - listenOn: ":3000" + path: "/etc/sayauz/stage.socket" + chmod: '0666' blogPages: storage: type: b2 |