소스 검색

install sqlite, php and php sqlite driver, modify nginx template

tags/1.5
Nico Rey 4 년 전
부모
커밋
281fb42331
2개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -1
      install.sh
  2. +6
    -1
      templates/nginx.cfg

+ 4
- 1
install.sh 파일 보기

@@ -54,7 +54,10 @@ sudo apt install -yq predict \
libxft2 \
libjpeg9 \
libjpeg9-dev \
socat
socat \
php7.2-fpm \
php7.2-sqlite \
sqlite3

sudo pip3 install numpy ephem tweepy Pillow
log_done "Packages installed"


+ 6
- 1
templates/nginx.cfg 파일 보기

@@ -1,7 +1,7 @@
server {
listen 80 default_server;
root /var/www/wx;
index index.html index.htm index.nginx-debian.html;
index index.php index.html index.htm index.nginx-debian.html;
autoindex on;

server_name wx.home;
@@ -9,4 +9,9 @@ server {
location / {
try_files $uri $uri/ =404;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
}

불러오는 중...
취소
저장