主页 > 知识库 > nginx 代理80端口转443端口的实现

nginx 代理80端口转443端口的实现

热门标签:信贷电销机器人系统 山东电信外呼系统靠谱吗 云南云电销机器人招商 鹦鹉螺号航海地图标注时间 江苏自动外呼系统一般多少钱 比较稳定的外呼系统 ai电话机器人营销 400 电话 申请费用 长沙回拨外呼系统

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开头的属性代表与证书配置有关,其他属性请根据自己的需要进行配置。
 server {
 listen 443 ssl;  #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
 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;  #使用该协议进行配置。
 ssl_prefer_server_ciphers on;  
 location / {
  root /etc/nginx/hss;  #站点目录。
  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; 
 }

到此这篇关于nginx 代理80端口转443端口的实现的文章就介绍到这了,更多相关nginx 代理80转443内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

标签:嘉兴 运城 澳门 乌海 齐齐哈尔 衡阳 拉萨 亳州

巨人网络通讯声明:本文标题《nginx 代理80端口转443端口的实现》,本文关键词  nginx,代理,端口,转,443,的,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《nginx 代理80端口转443端口的实现》相关的同类信息!
  • 本页收集关于nginx 代理80端口转443端口的实现的相关信息资讯供网民参考!
  • 推荐文章