5 lines
161 B
Bash
5 lines
161 B
Bash
|
#!/bin/sh
|
||
|
# update port and BD proxy
|
||
|
sed "s#{{proxy_server}}#$VITE_PROXY#g" /configs/nginx.conf > /etc/nginx/conf.d/default.conf
|
||
|
# run up
|
||
|
nginx -g 'daemon off;'
|