Gcloud で、Ubuntu 17.04 をセットアップする
更新
$ sudo apt update
$ sudo apt upgrade
Nginx のインストール
$ sudo apt install nginx-full
ディフォールトのページは、/var/www/html/index.html
$ sudo apt install php php-cli php-fpm php-json
/etc/nginx/sites-available/default を編集
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
設定の確認
$ sudo nginx -t
Nginx の再起動
$ sudo systemctl restart nginx
$ sudo apt install fcgiwrap
/etc/nginx/sites-available/default を編集
location ~ \.py$ {
gzip off;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
fastcgi_index index.py;
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name;
}
Return
Apr/23/2017 AM 08:15