nginx 配置站点 支持 http协议 80端口 https协议 443端口同时兼容访问 实例

最近由于mmsid被封,而没有其他的网盘可以代替,所以想到了上https,这样就可以在线播放magnet协议的视频了。当然这里需要你的nginx支持ngx_http_ssl_module模块,否则会报错。

申请ssl证书:https://freessl.wosign.com/,全中文网站,具体申请步骤就不细写了。

下面贴出nginx的具体配置文件:

server {  listen 80 default_server; #监听80端口,作为默认网站,即使用ip访问时默认出现的站点  listen 443 ssl; #同时监听443端口为ssl  root /v.jiloc.com; #网站根目录地址  index index.html index.htm index.php;   server_name v.jiloc.com;  #配置证书段,证书放在nginx安装目录的sslkey目录下。  ssl_certificate sslkey/v.jiloc.com_bundle.crt;  ssl_certificate_key sslkey/v.jiloc.com.key;  ssl_session_timeout 5m;  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;  ssl_ciphers ALL:!DH:!EXPORT:!RC4:+HIGH:+MEDIUM:-LOW:!aNULL:!eNULL;  ssl_prefer_server_ciphers on;   location / {  try_files $uri $uri/ /index.php?args;  if (!-e $request_filename){  rewrite (.*) /index.php;  }  location ~ .*.(bmp|gif|jpg|jpeg|png|swf)$ {#图片防盗链配置段  valid_referers none blocked *.jjhr.net jjhr.net jiloc.com *.jiloc.com *.22g87.com 22g87.com xianzizhou.com *.xianzizhou.com;  if ($invalid_referer) {  return 403;  }  expires 10d;  }  location ~ .*.(js|css)$ {  expires 10d;  }  }  include php5-fpm.conf;#php-fpm配置段  access_log /var/log/nginx/v.jiloc.com.access.log; }

腾讯云限时秒杀【点击购买】

搬瓦工,CN2高速线路,1GB带宽,电信联通优化KVM,延迟低,速度快,建站稳定,搬瓦工BandwagonHost VPS优惠码BWH26FXH3HIQ,支持<支付宝> 【点击购买】!

Vultr$3.5日本节点,512M内存/500G流量/1G带宽,电信联通优化,延迟低,速度快【点击购买】!

阿里云香港、新加坡VPS/1核/1G/25G SSD/1T流量/30M带宽/年付¥288【点击购买】

nginx 配置站点 支持 http协议 80端口 https协议 443端口同时兼容访问 实例

`微信`扫码 加好友

链接到文章: https://gkxyz.com/nginx-peizhizhandian-zhichi-httpxieyi-80duankou-httpsxieyi-443duankoutongshijianrongfangwen-shili.html

推荐站点

  • Akamai(Linode)

    Deploy more with Linux virtual machines, global infrast […]

  • 芒果TV-天生青春

    芒果TV-大家都在看的在线视频网站-热门综艺最新电影电视剧在线观看

  • 腾讯云 – 产业智变 云启未来

    腾讯云为数百万的企业和开发者提供安全稳定的云计算服务,涵盖云服务器、云数据库、云存储、视频与CDN、域名注册等 […]

  • Web Hosting Services Crafted with Care – SiteGround

    Our web hosting is trusted by more than 2,800,000 domai […]

  • Vultr

    Vultr Global Cloud Hosting – Brilliantly Fast SSD […]

  • 观察者网

    观察者网,致力于荟萃中外思想者精华,鼓励青年学人探索,建中西文化交流平台,为崛起中的精英提供决策参考。

评论已关闭