摘要:由于博客主題使用了字體,國內(nèi)只能通過中科大的代理來使用字體。然而最近發(fā)現(xiàn)其速度不穩(wěn)定,響應(yīng)時間有時候甚至超過。
由于博客主題使用了 Google fonts PT Serif 字體,國內(nèi)只能通過中科大的代理來使用 Google fonts 字體。然而最近發(fā)現(xiàn)其速度不穩(wěn)定,響應(yīng)時間有時候甚至超過 600ms。剛好因為自己有 vultr 的 VPS(帶小尾巴) 就自己動手搭了個來用
VPS 環(huán)境如下:
Ubuntu 14.04
Nginx 1.12.0 (最新版各別配置與之前不一樣)
Openssl 1.0.2j (新版 Nginx 開啟 http2 需要的最低 openssl 版本)
重新編譯安裝 Nginx如果之前編譯安裝沒開啟相關(guān)模塊的話需要重新編譯,大概參數(shù)如下:
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-openssl=/usr/local/ssl --with-http_v2_module --with-http_sub_module
編譯完沒有出錯的話就 make && make install 就 OK 了
配置 Nginx 反代 基本配置upstream google { server fonts.googleapis.com:80; } upstream gstatic { server fonts.gstatic.com:80; } proxy_temp_path /your/path/tmp 1 2; proxy_cache_path /your/path/cache levels=1:2 keys_zone=cache1:100m inactive=30d max_size=1g;80 端口配置
server { listen 80; server_name your.proxy.domain; root /your/path/; location /css { sub_filter "fonts.gstatic.com" "your.proxy.domain"; sub_filter_once off; sub_filter_types text/css; proxy_pass_header Server; proxy_set_header Host fonts.googleapis.com; proxy_set_header Accept-Encoding ""; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://google; proxy_cache cache1; proxy_cache_key $host$uri$is_args$args; proxy_cache_valid 200 304 10m; expires 365d; } location / { proxy_pass_header Server; proxy_set_header Host fonts.gstatic.com; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://gstatic; proxy_cache cache1; proxy_cache_key $host$uri$is_args$args; proxy_cache_valid 200 304 10m; expires 365d; } }443 端口配置
首先你得有個免費的 HTTPS 證書,這個可以參考我之前的文章:免費 Https 證書(Let"S Encrypt)申請與配置
注意設(shè)置 sub_filter 字段的時候 你的域名要加上 https://,要不然會出現(xiàn)代理的 CSS 文件中的字體文件引用是 HTTP 而請求報 blocked/mixed-content 錯
server { listen 443 ssl http2; ssl on; ssl_certificate /etc/letsencrypt/live/your.proxy.domain/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/your.proxy.domain/privkey.pem; ssl_dhparam /etc/ssl/certs/dhparams.pem; ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; server_name your.proxy.domain; root /var/sites/fonts/; location /css { sub_filter "http://fonts.gstatic.com" "https://your.proxy.domain"; sub_filter_once off; sub_filter_types text/css; proxy_pass_header Server; proxy_set_header Host fonts.googleapis.com; proxy_set_header Accept-Encoding ""; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://google; proxy_cache cache1; proxy_cache_key $host$uri$is_args$args; proxy_cache_valid 200 304 10m; expires 365d; } location / { proxy_pass_header Server; proxy_set_header Host fonts.gstatic.com; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://gstatic; proxy_cache cache1; proxy_cache_key $host$uri$is_args$args; proxy_cache_valid 200 304 10m; expires 365d; } }安全防盜鏈
如果不共享給其它人用的話還需要在配置中加入 referer 白名單判斷,不符合條件的將返回 403
valid_referers server_name *.your.domain.com *.other.domain.com; if ($invalid_referer) { return 403; }
博客原文:https://keelii.github.io/2017/04/22/proxy-google-fonts-with-ssl-http2-support/
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/39537.html
摘要:反向代理反向代理反向代理負(fù)載均衡鑒權(quán)限流等邏輯架構(gòu)在邏輯上分為入口層,模塊化的功能處理層,系統(tǒng)調(diào)用層。多個共同監(jiān)聽事件并處理,反向代理會把請求轉(zhuǎn)發(fā)給后端服務(wù)。 一.概述 本文將深入剖析nginx的架構(gòu)。 第一部分介紹nginx現(xiàn)有框架,用典型的4+1視圖闡述,包括邏輯架構(gòu),開發(fā)架構(gòu),運行架構(gòu),物理架構(gòu),功能用例,nginx為單機(jī)服務(wù),不考慮物理架構(gòu)。其中功能用例概述nginx功能;邏輯...
摘要:反向代理反向代理反向代理負(fù)載均衡鑒權(quán)限流等邏輯架構(gòu)在邏輯上分為入口層,模塊化的功能處理層,系統(tǒng)調(diào)用層。多個共同監(jiān)聽事件并處理,反向代理會把請求轉(zhuǎn)發(fā)給后端服務(wù)。 一.概述 本文將深入剖析nginx的架構(gòu)。 第一部分介紹nginx現(xiàn)有框架,用典型的4+1視圖闡述,包括邏輯架構(gòu),開發(fā)架構(gòu),運行架構(gòu),物理架構(gòu),功能用例,nginx為單機(jī)服務(wù),不考慮物理架構(gòu)。其中功能用例概述nginx功能;邏輯...
摘要:下載并安裝將安裝程序下載到當(dāng)前目錄,安裝初始化刪除安裝文件配置移動當(dāng)前目錄文件到目錄移動當(dāng)前目錄文件到如果不存在則手動創(chuàng)建一般都存在測試是否安裝成功出現(xiàn)了上面的畫面說明可以正常使用了使用創(chuàng)建項目使用下載安裝包添加環(huán)境變量創(chuàng)建并打開 下載并安裝composer 將安裝程序下載到當(dāng)前目錄 [root@localhost ~]# php -rcopy(https://getcomposer....
閱讀 2773·2021-11-17 09:33
閱讀 3099·2021-10-25 09:44
閱讀 1207·2021-10-11 10:59
閱讀 2403·2021-09-27 13:34
閱讀 2910·2021-09-07 10:19
閱讀 2140·2019-08-29 18:46
閱讀 1538·2019-08-29 12:55
閱讀 930·2019-08-23 17:11