mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
12 lines
320 B
Bash
12 lines
320 B
Bash
#!/bin/bash
|
|
cd /var/www/uguu || exit
|
|
npm install
|
|
make
|
|
make install
|
|
service nginx stop
|
|
rm /etc/nginx/sites-enabled/default
|
|
/root/.acme.sh/acme.sh --set-default-ca --server letsencrypt
|
|
/root/.acme.sh/acme.sh --issue --standalone -d "$DOMAIN" -d "$FILE_DOMAIN"
|
|
service nginx start
|
|
service php8.1-fpm start
|
|
tail -f /dev/null |