mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
38580c3940
* fix websocket connection issue in docker makeplane/plane#3195 * fix websocket connection issue for local env with removing from the prod nginx conf template makeplane/plane#319 * fix env substitution issue of proxy_set_header makeplane/plane#3196 * review fixes --------- Co-authored-by: Manish Gupta <manish@mgupta.me>
7 lines
158 B
Bash
7 lines
158 B
Bash
#!/bin/sh
|
|
|
|
export dollar="$"
|
|
export http_upgrade="http_upgrade"
|
|
envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
|
exec nginx -g 'daemon off;'
|