中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

nginx如何支持ssl

小新
215
2021-01-21 10:02:51
欄目: 云計算

nginx如何支持ssl

nginx支持ssl的方法:

在nginx配置文件中添加支持ssl傳輸協議,例如:

shell> vim /usr/local/nginx/conf/nginx.conf

------------------------------------------------

user  apache apache;

worker_processes  2;

error_log  logs/error_nginx.log;

pid        logs/nginx.pid;

events {

    worker_connections  1024;

}

 

http {

        include       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  logs/access_nginx.log  main;

        sendfile        on;

        tcp_nopush      on;

        keepalive_timeout  65;

        gzip  on;

 

server {

        listen       443;

        server_name  www.5655pk.com;

         charset uft-8;

         access_log logs/www.access.log main;

         root /var/www/html;

         location / {

         index index.html index.htm;

          }

 

         ssl                  on;

         ssl_certificate      /usr/local/nginx/conf/ssl/client.pem;

         ssl_certificate_key  /usr/local/nginx/conf/ssl/client.key;

 

      }

}

--------------------------------------------------------

#上面的配置只支持http://www.5655pk.com 訪問,因為監聽端口只開了443端口,普通的http協議的80端口并未開放

#要開放http和https,再加上下面這一條server

------------------------------------------------

server {

        listen       80;

        server_name  www.5655pk.com;

         charset uft-8;

         access_log logs/www.access.log main;

         root /var/www/html;

         location / {

         proxy_pass http://10.10.54.150:1500;

          }

      }

       

#當用戶使用http協議瀏覽該網站時,自動跳轉到10.10.54.150:1500上

------------------------------------------------


0
民乐县| 紫云| 德钦县| 朝阳县| 英吉沙县| 新兴县| 余江县| 翼城县| 资讯| 温宿县| 句容市| 巴中市| 奎屯市| 衡南县| 衡阳县| 林芝县| 错那县| 民丰县| 霍城县| 镇原县| 达孜县| 陆丰市| 洛阳市| 丰县| 松原市| 新巴尔虎右旗| 辉南县| 同仁县| 临武县| 曲阳县| 清丰县| 乌恰县| 松阳县| 壤塘县| 汽车| 汝阳县| 旬阳县| 保德县| 元阳县| 霸州市| 同仁县|