mirror of
https://github.com/fastogt/fastocloud.git
synced 2025-02-14 17:51:54 +00:00
9 lines
163 B
Bash
9 lines
163 B
Bash
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
# update system
|
||
|
apt-get update
|
||
|
apt-get install -y nginx
|
||
|
cp env/nginx/fastocloud /etc/nginx/sites-available/fastocloud
|
||
|
systemctl restart nginx
|