feat: scaffold v0.3.0 mailcow integration and plugin hook structure

This commit is contained in:
Thea Kindinger
2026-04-08 20:00:01 -04:00
parent 931c03ba93
commit cdb8e31c54
9 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1 @@
# Mailcow plugin runtime reverse proxy\n# Include this from the Mailcow nginx site or merge into the active server block.\n# Adjust upstream address if the runtime is not on localhost:4110.\n\nlocation /plugins-runtime/ {\n proxy_pass http://127.0.0.1:4110/;\n proxy_http_version 1.1;\n\n proxy_set_header Host $host;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header X-Forwarded-Proto $scheme;\n\n proxy_request_buffering off;\n proxy_buffering off;\n client_max_body_size 100m;\n}\n