mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:09:16 +02:00
8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
|
|
envsubst "`env | awk -F = '{printf \" $$%s\", $$1}'`" \
|
|
< /etc/nginx/nginx.conf.template \
|
|
> /etc/nginx/nginx.conf \
|
|
&& cat /etc/nginx/nginx.conf \
|
|
&& nginx-debug -g 'daemon off;'
|