mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-05 15:57:23 +01:00
preliminary script for nginx
This commit is contained in:
17
scripts/web.sh
Executable file
17
scripts/web.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
# HTTP: Turn on a web server serving static files
|
||||
#################################################
|
||||
|
||||
apt-get install -q -y nginx
|
||||
|
||||
rm -f /etc/nginx/sites-enabled/default.conf
|
||||
|
||||
cat conf/nginx.conf \
|
||||
| sed "s/\$STORAGE_ROOT/$STORAGE_ROOT/g" \
|
||||
| sed "s/\$PUBLIC_HOSTNAME/$PUBLIC_HOSTNAME/g" \
|
||||
> /etc/nginx/sites-enabled/local.conf
|
||||
|
||||
service nginx reload
|
||||
|
||||
ufw allow http
|
||||
ufw allow https
|
||||
|
||||
Reference in New Issue
Block a user