1
0
mirror of https://github.com/nokonoko/Uguu.git synced 2024-01-06 13:35:15 +00:00
uguu/docker/docker-entrypoint.sh

12 lines
324 B
Bash
Raw Normal View History

#!/bin/bash
2023-01-01 08:45:39 +00:00
cd /var/www/uguu
npm install
make
make install
2023-01-01 09:26:04 +00:00
service nginx stop
rm /etc/nginx/sites-enabled/default
2023-01-01 08:45:39 +00:00
/root/.acme.sh/acme.sh --set-default-ca --server letsencrypt
2023-01-01 09:26:04 +00:00
/root/.acme.sh/acme.sh --issue --standalone -d $DOMAIN -d $FILE_DOMAIN
2023-01-01 08:45:39 +00:00
service nginx start
service php8.1-fpm start
tail -f /var/log/nginx/access.log