mirror of
https://github.com/fastogt/fastocloud.git
synced 2025-02-12 15:41:51 +00:00
8 lines
163 B
Bash
8 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
|