mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
9 lines
206 B
Bash
Executable file
9 lines
206 B
Bash
Executable file
# init nginx config dir
|
|
if [ "$(ls -A /etc/nginx)" = "" ]; then
|
|
echo "Initialing Nginx config dir"
|
|
cp -rp /etc/nginx.orig/* /etc/nginx/
|
|
echo "Initialed Nginx config dir"
|
|
fi
|
|
|
|
# start nginx
|
|
nginx
|