查看完整版本: 在 CentOS7 下讓nginx支援 more_set_headers 自定義Header訊息


dannyliao 2018-1-18 11:04

在 CentOS7 下讓nginx支援 more_set_headers 自定義Header訊息

more_set_headers 用於添加、設置和清除輸入和輸出的頭信息。nginx源碼沒有包含該模塊,需要另行添加。<br>該模塊是ngx_http_headers_module模塊的增強版,提供了更多的實用工具,比如復位或清除內置頭信息,如Content-Type, Content-Length, 和Server。<br><br>Install Howto:<br>Download the latest webtatic-release rpm from<br>http://repo.webtatic.com/yum/el7/x86_64/<br><br>Install webtatic-release rpm for now:<br># rpm -Uvh http://repo.webtatic.com/yum/el7/x86_64/RPMS/webtatic-release-7-3.noarch.rpm<br><br>安裝 nginx1w-module-headers-more 套件,安裝前需要先移除已安裝的 nginx:<br># yum remove nginx<br># yum --enablerepo=webtatic install nginx1w nginx1w-module-headers-more<br><br>載入module 到 nginx.conf<br>[quote]<br>load_module "/usr/lib64/nginx/modules/ngx_http_headers_more_filter_module.so";<br>[/quote]<br><br>重新啟動 nginx 即可<br><br>參考文章:<br><a href="https://centos.pkgs.org/7/webtatic-x86_64/nginx1w-module-headers-more-1.12.0-1.w7.x86_64.rpm.html" target="_blank">https://centos.pkgs.org/7/webtatic-x86_64/nginx1w-module-headers-more-1.12.0-1.w7.x86_64.rpm.html</a>
頁: [1]
查看完整版本: 在 CentOS7 下讓nginx支援 more_set_headers 自定義Header訊息