· Joseph · DevOps  · 5 min read

用Google load balancer跟GCE docker-nginx設定HTTP(S)

前情提要

最近要將手邊的案子掛上HTTPS,機器是在Google Cloud Platform (GCP)上面開compute engine (gce),並在裡面run docker (nginx),讓我們來看看現在的配置。

docker-nginx.jpg

前情提要

最近要將手邊的案子掛上HTTPS,機器是在Google Cloud Platform (GCP)上面開compute engine (gce),並在裡面run docker (nginx),讓我們來看看現在的配置。

docker-nginx.jpg

gce-with-static-ip

從上面兩張圖可以看到,現在GCE是有掛上static ip,好讓Godaddy DNS可以直接指向IP。並且把80/443兩個port的資料forward到nginx docker,這裡雖然有開啟443 forward,但內部nginx卻沒有listen 443,也沒有certificate。

server {
    listen       80;
    server_name  _;
    root   /var/www/html;
    index index.html index.htm index.php;

    location / {
      if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php/$1 last;
      }
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /var/www/html;
    }
    location ~ \.php(.*)$ {
        root /var/www/html;
        fastcgi_pass   php:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info ^(.+\.php)(.*)$;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }
}

現在要開始掛HTTPS,目前觀察有兩種做法:

  1. GCE VM或docker裡使用Let’s Encrypt自己簽certificate,並定期renew
  2. 用GCP裡的HTTP(S) load balancer簽certificate

因為這次不太想增加機器運作負擔,所以我選擇第2條路,馬上來看看架構圖: architecture

Instance group

第一步我們要先替Instance建立一個group,可以透過**Compute Engine / 執行個體群組(Instance Groups)**建立一個新的instance group。

記得建立的時候選新增非代管的執行個體群組,並在VM 執行個體裡選擇你們的VM create instance group

結果就會像下面這樣: instance group

接下來我們就可以進到下一步,設定load balancer。

HTTP(S) load balancer

打開sidebar找到網路服務 / 負載平衡 / 建立負載平衡器,選擇HTTP(S)負載平衡後,就可以開始輸入資訊: load-balancer

load balancer step 1

接著是建立後端服務,這部分相對單純,只要把instance group設定好,並把port number設定為80, 443,最後因為我們nginx 只有listen 80 port,所以下面有個**健康狀態檢查 (health check)**建立一個新的health check並設定port 80即可。 set backend instance group 這邊建立好以後,主機與路徑規則會自動幫我們生成。如果沒有額外的static resource相關路徑要修改,其實這邊不用動。 host and path

最後是卡關卡很久的地方建立前端服務,這邊有三個要注意的:

針對HTTPS建立憑證

create certificate 這邊因為我沒有憑證,所以我讓Google代管,只需要輸入domain即可。

建立靜態IP位址,不要使用臨時的位址

create ip 如果都選臨時,會發現到時候要設定DNS的時候無法分辨80/443要去哪個IP,所以這邊選擇建立一個靜態位址,只需要在臨時這邊改成建立IP位址,並輸入名稱即可。

之後可以在sidebar裡的VPC網路 / 外部IP位址,找到剛剛保留的ip address

建立兩個前端IP和通訊埠,一個給80,一個給443

set frontend 這邊可以看到兩個的IP是一樣的,port則分別為80443,這樣基本上就設定好了。

最後來看看設定的結果: result

我把我專案名稱碼掉了…

這邊要注意到綠色勾勾,這可能要等20分鐘左右才會出現。 如果DNS沒設定好,讓domain找不到網站的話,他最後還會跳出FAILED_NOT_VISIBLE

等看到綠色勾勾以後,接著最後一步,就是godaddy設定DNS,把位址指到剛剛建立的IP就好。

省錢步驟 記得最開始我們VM有掛上外部IP嗎?這時候他已經不需要了,沒用到的固定IP會被收取額外的費用 所以我們可以編輯VM設定,把外部IP取消,然後去VPC網路 / 外部IP位址釋放剛剛沒有用到的IP。

Back to Blog

Related Posts

View All Posts »
Using Firebase and Firestore with NextJS and Docker - Part 1 - Setup firebase in docker

Using Firebase and Firestore with NextJS and Docker - Part 1 - Setup firebase in docker

Last year, I got a case to use firebase and firestore with Next.js. I've been fullstack many years, so I haven't tried to use firebase and firestore. There was a great chance to give it a try. In this article I'll show how to use firebase and firestore in Docker and Next.js. If you don't have backend support, or you don't want to build whole backend, database, and infrastructure, you would probably think this is a useful way.

Install Docker / Docker-compose on CentOS 8

新的一篇文章來講講最近踩的雷,起因手邊有個案子開了一台CentOS 8機器給我,讓我在上面設定docker跟跑起服務。實在跟CentOS很不熟的我決定寫篇備忘錄。 一開始就先開台乾淨的CentOS VM來準備被我玩爛... install centos Install Docker 然後,讓我慢慢安裝docker。

AWS Cloud Development Kit (CDK) project structure

AWS Cloud Development Kit (CDK) project structure

Previously blog I used NodeJs/Typescript as a backend and deployed with AWS Cloud Development Kit (AWS CDK). The same framework, but more complex than the sample, is used on our Firstage. So this post I will show how we structure our AWS CDK project codebase. Project Structure project structure