主頁 > 知識(shí)庫(kù) > nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)

nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)

熱門標(biāo)簽:信貸電銷機(jī)器人系統(tǒng) 山東電信外呼系統(tǒng)靠譜嗎 云南云電銷機(jī)器人招商 鸚鵡螺號(hào)航海地圖標(biāo)注時(shí)間 江蘇自動(dòng)外呼系統(tǒng)一般多少錢 比較穩(wěn)定的外呼系統(tǒng) ai電話機(jī)器人營(yíng)銷 400 電話 申請(qǐng)費(fèi)用 長(zhǎng)沙回?fù)芡夂粝到y(tǒng)

nginx.conf配置文件如下

user nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid    /var/run/nginx.pid;


events {
  worker_connections 1024;
}


http {
  include    /etc/nginx/mime.types;
  default_type application/octet-stream;

  log_format main '$remote_addr - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';

  access_log /var/log/nginx/access.log main;

  sendfile    on;
  #tcp_nopush   on;

  keepalive_timeout 65;

  #gzip on;

  include /etc/nginx/conf.d/*.conf;
 
 # 以下屬性中以ssl開頭的屬性代表與證書配置有關(guān),其他屬性請(qǐng)根據(jù)自己的需要進(jìn)行配置。
 server {
 listen 443 ssl;  #SSL協(xié)議訪問端口號(hào)為443。此處如未添加ssl,可能會(huì)造成Nginx無法啟動(dòng)。
 server_name localhost; #將localhost修改為您證書綁定的域名,例如:www.example.com。
 root html;
 index index.html index.htm;
 ssl_certificate /etc/nginx/huashengshu.top.pem;  #替換成您證書的文件名。
 ssl_certificate_key /etc/nginx/huashengshu.top.key;  #替換成您證書的密鑰文件名。
 ssl_session_timeout 5m;
 ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;  #使用該協(xié)議進(jìn)行配置。
 ssl_prefer_server_ciphers on;  
 location / {
  root /etc/nginx/hss;  #站點(diǎn)目錄。
  index index.html index.htm;  
 }
 }
 

 server {
 listen 80;
 server_name huashengshu.top;
 rewrite ^(.*)$ https://${server_name}$1 permanent; 
 }

}

起作用的是

 server {
 listen 80;
 server_name huashengshu.top;
 rewrite ^(.*)$ https://${server_name}$1 permanent; 
 }

到此這篇關(guān)于nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)nginx 代理80轉(zhuǎn)443內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:嘉興 運(yùn)城 澳門 烏海 齊齊哈爾 衡陽 拉薩 亳州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)》,本文關(guān)鍵詞  nginx,代理,端口,轉(zhuǎn),443,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)》相關(guān)的同類信息!
  • 本頁收集關(guān)于nginx 代理80端口轉(zhuǎn)443端口的實(shí)現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章