最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

[HTTP3/QUIC] Debian 編譯 NGINX_QUIC ,支持 HTTP3 QUIC

2023-02-20 04:49 作者:rua喵的小離  | 我要投稿

[HTTP3/QUIC] Debian 編譯 NGINX_QUIC ,支持 HTTP3 QUIC

1. 準(zhǔn)備 golang 環(huán)境(編譯 BoringSSL 需要)

#?卸載舊環(huán)境?golang
apt-get?remove?golang
apt-get?autoremove
#?環(huán)境準(zhǔn)備?golang
cd?/usr/local/src/
wget?https://golang.google.cn/dl/go1.19.1.linux-amd64.tar.gz
tar?-zxvf?go1.19.1.linux-amd64.tar.gz
mv?go?/usr/local/
ln?-s?/usr/local/go/bin/go?/usr/bin/go

2. 編譯 BoringSSL (NGINX-QUIC/HTTP3 需要)

#?BoringSSL
#?Centos?編譯不過,編譯完從?Debian?復(fù)制過去也能用
cd?/usr/local/src/
apt?install?git?cmake?gcc?g++
git?clone?https://github.com/google/boringssl.git
mkdir?/usr/local/src/boringssl/build
cd?/usr/local/src/boringssl/build
cmake?..
gmake?
gmake?install

3. 編譯 NGINX

#?準(zhǔn)備編譯環(huán)境
cd?/usr/local/src/
wget?https://zlib.net/zlib-1.2.13.tar.gz
tar?-zxvf?zlib-1.2.13.tar.gz
apt?install?libpcre3?libpcre3-dev?mercurial
hg?clone?-b?quic?https://hg.nginx.org/nginx-quic
cd?/usr/local/src/nginx-quic
#?編譯?HTTP3
./auto/configure?\
--with-debug?\
--with-pcre?\
--with-stream?\
--with-stream_ssl_module?\
--with-stream_quic_module?\
--with-http_v2_module?\
--with-http_v3_module?\
--with-http_ssl_module?\
--with-http_stub_status_module?\
--with-http_addition_module?\
--with-http_sub_module?\
--with-threads?\
--with-openssl-opt='enable-tls1_3'?\
--prefix=/usr/local/nginx?\
--with-zlib=../zlib-1.2.13?\
--with-cc-opt="-I../boringssl/include"?\
--with-ld-opt="-L../boringssl/build/ssl?-L../boringssl/build/crypto"
make
make?install
#?HTTP2?(已經(jīng)不使用)
./configure?\
--with-pcre?\
--with-stream?\
--with-stream_ssl_module?\
--with-http_v2_module?\
--with-http_ssl_module?\
--with-http_stub_status_module?\
--with-http_addition_module?\
--with-http_sub_module?\
--with-threads?\
--with-openssl-opt='enable-tls1_3'?\
--prefix=/usr/local/nginx?\
--with-openssl=../openssl-1.1.1q?\
--with-zlib=../zlib-1.2.13
make
make?install

4. 配置使用 systemctl

vim /usr/lib/systemd/system/nginx.service

[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx?-s?reload
ExecStop=/usr/local/nginx/sbin/nginx?-s?quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

5. 提供一個簡化的NGINX 配置

##?缺少某些目錄或者文件導(dǎo)致無法寫入,導(dǎo)致啟動報錯的
mkdir?-p?/etc/nginx/conf/logs/
##?自行解決:?dhparam.pem?ssl_certificate、ssl_certificate_key?等文件
##?這個文件主要是寫一些通用的配置,通過?include?來統(tǒng)一引入。看起來簡潔一些
vim?/etc/nginx/public.conf
##?重要:?必須要在?include?vim?/usr/local/nginx/conf/nginx.conf?才能生效
include?/etc/nginx/*.conf;

vim /etc/nginx/zhuihoude.cn.conf

server?{??#if?($host?!~*?"(zhuihoude)")?{?return?444;}
??listen?80;
??return?302?https://$host$request_uri?http;
}

################?zhiuhoude.cn?################
server?{
include?????????????????????????????????????/etc/nginx/conf/public.conf;
??ssl_trusted_certificate???????????????????/etc/nginx/conf/certificate/cn.crt;
??ssl_certificate???????????????????????????/etc/nginx/conf/certificate/cn.crt;
??ssl_certificate_key???????????????????????/etc/nginx/conf/certificate/cn.key;

??server_name???????????????????????????????zhuihoude.cn;
??listen????????????????????????????????????443?http2?reuseport?fastopen=3?ssl;
??listen????????????????????????????????????443?http3?reuseport;

location?/?{
??if?(
??$host?!~*?"(zhuihoude)")??????????????????{?return?302?http://zhuihoude.cn;?}
??proxy_pass????????????????????????????????https://127.0.0.1:8080/;
??proxy_redirect????????????????????????????default;
#?proxy_set_header?寫在?server?下似乎會失效
??proxy_set_header??????????????????????????Host?$host;
??proxy_set_header??????????????????????????X-Real-IP?$remote_addr;
??proxy_set_header??????????????????????????X-Forwarded-For?$proxy_add_x_forwarded_for;
??access_log????????????????????????????????/etc/nginx/conf/logs/today_zhdcn.json?log_json;
}

vim /etc/nginx/public.conf

##?SSL?Config
??ssl_dhparam???????????????????????????????/etc/nginx/conf/certificate/dhparam.pem;
??ssl_protocols?????????????????????????????TLSv1.2?TLSv1.3;?#?SSLv2?SSLv3?TLSv1?TLSv1.1?
??ssl_session_cache?????????????????????????shared:SSL:10m;??#緩存大小
??ssl_session_tickets???????????????????????on;??????????????#瀏覽器緩存
??ssl_session_timeout???????????????????????10m;?????????????#緩存超時
??ssl_prefer_server_ciphers?????????????????on;??????????????#使用服務(wù)器密碼
??ssl_ciphers???????????????????????????????ECDHE:!CBC:!NULL:!aNULL:!eNULL:!MD5:!ADH:!RC4:!DH:!DHE;
??ssl_early_data????????????????????????????on;??????????????#開啟?1.3?o-RTT
??keepalive_timeout?????????????????????????120s;????????????#TCP?保持
??keepalive_requests????????????????????????1000;

?#ssl_stapling??????????????????????????????on;?##?OCSP?Stapling?用于在線查詢證書吊銷情況?BoringSLL?暫不支持
??ssl_stapling_verify???????????????????????on;
#?ssl_stapling_file?????????????????????????/etc/nginx/conf/certificate/stapling_file.ocsp;
??resolver??????????????????????????????????114.114.114.114?8.8.8.8?valid=240s;
??resolver_timeout??????????????????????????5s;

##?HTTP3
??quic_retry????????????????????????????????on;
??quic_gso??????????????????????????????????on;
??quic_mtu??????????????????????????????????1350;

##?升級站內(nèi)?HTTP?為?HTTPS?連接
??proxy_hide_header?????????????????????????Content-Security-Policy;
??add_header????????????????????????????????Content-Security-Policy?upgrade-insecure-requests;
##?HTTP3?開啟常用端口
??proxy_hide_header?????????????????????????Alt-Svc;
??add_header????????????????????????????????Alt-Svc?'h3=":443";?ma=86400';
??add_header????????????????????????????????Alt-Svc?'h3=":1443";?ma=86400';

##?Hsts
??proxy_hide_header?????????????????????????Strict-Transport-Security;
??add_header????????????????????????????????Strict-Transport-Security?"max-age=31536000;?includeSubdomains;?preload";
##?DENY:不能iframe;SAMEORIGIN:本站iframe;ALLOW-FROM:允許frame
??proxy_hide_header?????????????????????????X-Frame-Options;
??add_header????????????????????????????????X-Frame-Options?SAMEORIGIN;
##?防止?MIME?類型混淆攻擊
??proxy_hide_header?????????????????????????X-Content-Type-Options;
??add_header????????????????????????????????X-Content-Type-Options?nosniff;
##?跨域
??proxy_hide_header?????????????????????????Access-Control-Allow-Origin;
??add_header????????????????????????????????Access-Control-Allow-Origin?*;
??proxy_hide_header?????????????????????????Access-Control-Allow-Credentials;
??add_header????????????????????????????????Access-Control-Allow-Credentials?true;
??proxy_hide_header?????????????????????????Access-Control-Allow-Methods;
??add_header????????????????????????????????Access-Control-Allow-Methods?*;?#'GET,?POST,?OPTIONS';
??proxy_hide_header?????????????????????????Access-Control-Allow-Headers;
??add_header????????????????????????????????Access-Control-Allow-Headers?*;?#'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';

##?Error?Page
??error_page?400????????????????????????????/page/400.html;
??error_page?401????????????????????????????/page/401.html;
??error_page?403????????????????????????????/page/403.html;
??error_page?404????????????????????????????/page/404.html;
??error_page?502????????????????????????????/page/502.html;
??error_page?504????????????????????????????/page/504.html;
??error_page?506????????????????????????????/page/506.html;
??error_page?497????????????????????????????https://$host:$Server_port$request_uri?error=$host:$Server_port;

vim /usr/local/nginx/conf/nginx.conf

worker_processes????????????????????????????2;
worker_cpu_affinity?????????????????????????01?10;
worker_rlimit_nofile????????????????????????65535;

events{
??use???????????????????????????????????????epoll;
??multi_accept??????????????????????????????on;
??accept_mutex??????????????????????????????on;
??worker_connections????????????????????????512;
}
http{
include?????????????????????????????????????/etc/nginx/conf/page/mime.types;
default_type????????????????????????????????application/octet-stream;
server_names_hash_bucket_size???????????????128;
client_header_buffer_size???????????????????32k;
large_client_header_buffers?????????????????4?32k;
client_max_body_size????????????????????????50m;
sendfile????????????????????????????????????on;
tcp_nopush??????????????????????????????????on;
tcp_nodelay?????????????????????????????????on;
index???????????????????????????????????????index.html;
charset?????????????????????????????????????utf-8;

proxy_connect_timeout???????????????????????3s;
proxy_read_timeout??????????????????????????10s;
proxy_send_timeout??????????????????????????30s;

keepalive_timeout???????????????????????????60;
keepalive_requests??????????????????????????1000;
fastcgi_connect_timeout?????????????????????300;
fastcgi_send_timeout????????????????????????300;
fastcgi_read_timeout????????????????????????300;
fastcgi_buffer_size?????????????????????????64k;
fastcgi_buffers?64??????????????????????????64k;
fastcgi_busy_buffers_size???????????????????128k;
fastcgi_temp_file_write_size????????????????256k;
fastcgi_intercept_errors????????????????????on;

gzip????????????????????????????????????????on;
gzip_comp_level?????????????????????????????6;
gzip_min_length?????????????????????????????1k;
gzip_types??????????????????????????????????text/plain?text/css?text/xml?text/javascript?text/x-component?application/json?application/javascript?application/x-javascript?application/xml?application/xhtml+xml?application/rss+xml?application/atom+xml?application/x-font-ttf?application/vnd.ms-fontobject?image/svg+xml?image/x-icon?font/opentype;
gzip_disable????????????????????????????????"MSIE?[1-6].(?!.*SV1)";
gzip_vary???????????????????????????????????on;
gzip_proxied????????????????????????????????any;

log_format?log_json
??'{"timestamp":"$time_iso8601",\n'
??'"response_time":?"$upstream_response_time",\n'
??'"remote_addr":"$remote_addr",\n'
??'"http_x_forwarded_for":"$http_x_forwarded_for",\n'
??'"request_status":"$request_method-$status-$http3",\n'
??'"request_url":"$scheme://$host:$Server_port$request_uri",\n'
??'"referer":"$http_referer",\n'
??'"user_agent":"$http_user_agent",\n'
??'"request_body":"$request_body"\n'
??'},';
#?log_format?log_quic?'$remote_addr?-?$remote_user?[$time_local]?'
#???'"$request"?$status?$body_bytes_sent?'
#???'"$http_referer"?"$http_user_agent"?"$http3"';

access_log?/etc/nginx/conf/logs/today_nginx.json?log_json;
include?/etc/nginx/*.conf;
}

其他: 在編譯之前可以修改自定義服務(wù)器名稱

  1. 修改Nginx 內(nèi)部名稱 vim src/core/nginx.h

#define?nginx_version??????20447
#define?NGINX_VERSION??????"16.3?(20D74)"
#define?NGINX_VER??????????"iOS?"?NGINX_VERSION

  1. 修改 HTTP Response Header vim src/http/ngx_http_header_filter_module.c

static?u_char?ngx_http_server_string[]?=?"Server:?iOS"?CRLF;

  1. 修改錯誤頁的底部 Footer vim src/http/ngx_http_special_response.c

static?u_char?ngx_http_error_tail[]?=
"<hr><center>iOS?16.3?(20D47)</center>"?CRLF
"</body>"?CRLF
"</html>"?CRLF
;

其他: 每日自動日志分割

vim /etc/nginx/conf/shell/cutlog.sh

#!/bin/sh
#?使用?/etc/crontab?每天零點(diǎn)切割日志并重啟
#?0?0?*?*?*?root?/etc/nginx/conf/shell/cutlog.sh
systemctl?stop?nginx

touch?"/usr/local/nginx/logs/error.log"
touch?"/etc/nginx/conf/logs/today_nginx.json"
touch?"/etc/nginx/conf/logs/today_zhuihoude.json"

mv?"/usr/local/nginx/logs/error.log"???????????"/etc/nginx/conf/logs/$(date?-d?"yesterday"?+%G.%m.%d)_error.log"
mv?"/etc/nginx/conf/logs/today_nginx.json"?????"/etc/nginx/conf/logs/$(date?-d?"yesterday"?+%G.%m.%d)_nginx.json"
mv?"/etc/nginx/conf/logs/today_zhuihoude.json"?"/etc/nginx/conf/logs/$(date?-d?"yesterday"?+%G.%m.%d)_zhuihoude.json"

systemctl?start?nginx

其他: acme.sh 申請證書 (騰訊云 DNSPOD)

#?Git安裝?#其他方法參閱?https://github.com/acmesh-official/acme.sh?

git?clone?https://github.com/acmesh-official/acme.sh.git
cd?~/.acme.sh/
./acme.sh?--install?-m?justroylau@gmail.com

#
#?#DNSPOD?頒發(fā)證書
##?設(shè)定密鑰?獲取方法(頭像?-?我的賬號?-?賬號中心?-?API密鑰?-?DNSPod?Token?-?創(chuàng)建密鑰)
export?DP_Id="123456"
export?DP_Key="自己去查看吧"
##?其他?DNS?供應(yīng)商查詢?https://github.com/acmesh-official/acme.sh/wiki/dnsapi

#
#?可以申請泛域名(*)證書哦
./acme.sh?--issue?--dns?dns_dp?-d?zhuihoude.cn?-d?zhuihoude.com?-d?*.zhuihoude.cn?-d?*.zhuihoude.com

#
#?等待大約兩分鐘后…
cd?~/.acme.sh/zhuihoude.cn/
##?兩個文件就到手啦~?建議直接使用?fullchain.cer?包含了完整的證書鏈
~/.acme.sh/zhuihoude.cn/fullchain.cer
~/.acme.sh/zhuihoude.cn/zhuihoude.cn.key

其他: 群暉動態(tài) DDNS

群暉自帶 DDNS 支持泛域名
但是前端限制了 * 符號的無法提交,可以直接 POST 到后臺 (GET好像也行)。

Post 接口 https://zhuihoude.synology.me:5001/webapi/entry.cgi

##?首先獲取瀏覽器?F12?的?Request?Headers?三個就夠
x-requested-with:XMLHttpRequest
x-syno-hash:GrkQhxoP31TF4g-1ii_6Qzz-oYc2_g.MTY0
x-syno-token:xYlNn9NhDQgtA

####?Post?的?Form?Data,(具體參數(shù)可以直接瀏覽器?F12?去復(fù)制?只需要改域名就行)
####?可以用?Chrome?插件?Postwoman?來發(fā)送請求?
stop_when_error:true
mode:"sequential"
compound:[{"api":"SYNO.Core.DDNS.Record","method":"set","version":1,"id":"DNSPod.cn","enable":true,"provider":"DNSPod.cn","hostname":"這個是域名*.zhuihoude.com","username":"這個也是?騰訊云?DNS?POD的","net":"DEFAULT","ip":"124.227.92.77","ipv6":"0:0:0:0:0:0:0:0","heartbeat":false,"passwd":"這個是騰訊云DNS?POD?的"},{"api":"SYNO.Core.DDNS.Record","method":"update_ip_address","version":1,"id":"DNSPod.cn"}]
api:SYNO.Entry.Request
method:request
version:1


[HTTP3/QUIC] Debian 編譯 NGINX_QUIC ,支持 HTTP3 QUIC的評論 (共 條)

分享到微博請遵守國家法律
土默特右旗| 鄱阳县| 叶城县| 延津县| 乐平市| 秦皇岛市| 吉木萨尔县| 汉中市| 太康县| 库尔勒市| 七台河市| 郯城县| 康乐县| 扬中市| 改则县| 正镶白旗| 万源市| 福清市| 繁昌县| 泰宁县| 高台县| 甘泉县| 呼玛县| 会同县| 仙桃市| 海丰县| 玉山县| 潞城市| 密山市| 赞皇县| 阿瓦提县| 榆林市| 葵青区| 武乡县| 丰原市| 吉隆县| 庐江县| 阿克| 蒲江县| 宝清县| 贡嘎县|