mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
8 lines
183 B
Bash
8 lines
183 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
export dollar="$"
|
||
|
|
export http_upgrade="http_upgrade"
|
||
|
|
export scheme="scheme"
|
||
|
|
envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
||
|
|
exec nginx -g 'daemon off;'
|