浏览代码

check for installed index.html

tags/v1.0
Nico Rey 4 年前
父节点
当前提交
32ccdd4eac
共有 1 个文件被更改,包括 9 次插入2 次删除
  1. +9
    -2
      install.sh

+ 9
- 2
install.sh 查看文件

@@ -46,8 +46,12 @@ sudo apt install -yq predict \
nginx \
libncurses5-dev \
libncursesw5-dev \
python3-pip
sudo pip3 install numpy
python3-pip \
imagemagick \
libxft-dev \
libxft2

sudo pip3 install numpy ephem tweepy
log_done "Packages installed"

### Blacklist DVB modules
@@ -147,6 +151,9 @@ sudo cp nginx.cfg /etc/nginx/sites-enabled/default
sudo chmod 775 /var/www/wx
)
sudo systemctl restart nginx
if [ ! -e /var/www/wx/index.html ]; then
cp index.html /var/www/wx/index.html
fi
cp index.html /var/www/wx/index.html
log_done "Nginx configured"



正在加载...
取消
保存