GCP + Nginx 網站設定流程
後面有時間再補圖
前置
GCP 我用CentOS7
先去GCP先申請固定IP
SSH 進入後
用root
sudo su -
安裝Nginx
yum install nginx
上傳資料
1.設定 SSH 金鑰 [Google ]
用PuTTYgen 建立一個 SSH2-RSA Key
instance 裡面設定
2.WinSCP 設定
3.上傳檔案
4.用ssh root 去般檔案
mv /檔案位置 /你要的位置
chown -R root.root 你的資料夾名稱
chmod -R 775 你的資料夾名稱
5. selinux 的狀態 [處理如果403的問題]
/usr/sbin/sestatus
SELINUX=enabled 的話要修改
vi /etc/selinux/config
SELINUX=enforcing 修改 SELINUX=disabled
reboot
6.設定conf
主要設定檔 /etc/nginx/nginx.conf
改root 檔案位置的地方
有https的話也要改以下兩個地方
ssl_certificate "";
ssl_certificate_key "";
申請https的話可以去sslforfree申請
啟動 Nginx改root 檔案位置的地方
有https的話也要改以下兩個地方
ssl_certificate "";
ssl_certificate_key "";
申請https的話可以去sslforfree申請
service nginx start
去Domain商哪邊設定好剛剛的固定IP就都正常了