亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS6使用nginx搭建web網站服務的方法

發布時間:2020-10-15 19:07:09 來源:腳本之家 閱讀:159 作者:HerryLo 欄目:服務器

利用CentOS6搭建簡易的web服務

提示: 其中沒有涉及到MySQlMongoDB的安裝和使用,包括docker容器等,使用nginx反向代理靜態服務

centOS服務器

可以選用國外或者國內的服務器,這里只展示centOS系統配置,本人實在window系統下完成下列操作
選購一臺合適的云服務器,系統為centOS

在window系統下安裝xshell和xftp, 保證可以系統訪問centOS系統

使用xshell連接上云服務器,使用超級管理員root登錄

登錄完成之后安裝nginx

下面是需要下載的文件:

  • 首先安裝wget # yum install wget
  • nginx以來與gcc的編譯環境 # yum install gcc-c++
  • nginx的http模塊需要使用pcre來解析正則表達式 # yum -y install pcre pcre-devel
  • 依賴的解壓包 # yum -y install zlib zlib-devel
  • 下載nginx壓縮包 # wget -c https://nginx.org/download/nginx-1.10.3.tar.gz

解壓與安裝:

  • 解壓nginx # tar -zxvf nginx-1.10.3.tar.gz
  • 進入nginx目錄 #cd nginx-1.10.3
  • 對nginx的源碼進行編譯 # ./configure
  • 開始編譯 # make
  • 繼續編譯 # make install
  • 查看nginx安裝的目錄 # whereis nginx 它會告訴你nginx在哪,nginx的命令在/usr/local/nginx/sbin目錄下

nginx命令:

nginx命令開啟# ./nginx

停止# ./nginx -s stop

# ./nginx -s quit

重啟# ./nginx -s reload

開啟nginx # ./nginx 必須在nginx的安裝目錄下的sbi文件開啟,當然也可全局配置

查看是否開啟nginx # ps aux|grep nginx

nginx配置

以下是nginx配置的部分參考

# http server
server {
  listen    80;
  server_name www.didiheng.com;

  #charset koi8-r;

  #access_log logs/host.access.log main;

  access_log off; #緩存日志關閉
  server_tokens off;
  tcp_nopush on;
  tcp_nodelay on;

  gzip on; #gzip開啟
  gzip_comp_level 6; #gzip比率
  gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;

  proxy_connect_timeout 5; #緩存鏈接
  proxy_read_timeout 60; 
  proxy_send_timeout 5; 
  proxy_buffer_size 16k; 
  proxy_buffers 4 64k; 
  proxy_busy_buffers_size 128k; 
  proxy_temp_file_write_size 128k;   

  location / {
    root  /www; #此處絕對地址
    index index.html index.htm;
    try_files $uri $uri/ /index.html; //使用客戶端路由需配置
    rewrite ^(.*)$ https://$host$1 permanent; /強制定向https   
  }

  #error_page 404       /404.html;

  # redirect server error pages to the static page /50x.html
  #
  error_page  500 502 503 504 /50x.html;
  location = /50x.html {
    root  html;
  }
  
  #https server
  server {
    listen    443 ssl;
    server_name www.didiheng.com;

    ssl_certificate   server.crt;
    ssl_certificate_key server.key;

    ssl_session_cache  shared:SSL:1m;
    ssl_session_timeout 5m;

    ssl_ciphers HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers on;

    access_log off;
    server_tokens off;

    tcp_nopush on;
    tcp_nodelay on;

    expires epoch;
  gzip on;
    gzip_comp_level 6;
    gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;

    proxy_connect_timeout 5;
    proxy_read_timeout 60;
    proxy_send_timeout 5;
    proxy_buffer_size 16k;
    proxy_buffers 4 64k;
    proxy_busy_buffers_size 128k;
    proxy_temp_file_write_size 128k;

    location / {
      root  /www;
      index index.html index.htm;
      try_files $uri $uri/ /index.html;
    }
  }
  
}

在以上配置中我直接將https開啟了,若沒有相關的ssl配置,請將https服務注釋 使用 # 即可

修改之后重啟nginx

# ./nginx -s reload

使用serverIP或域名訪問 訪問

github原址

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

封丘县| 陕西省| 周口市| 江门市| 罗平县| 荆门市| 凉城县| 尼玛县| 安阳县| 黄大仙区| 神池县| 永仁县| 佳木斯市| 阳新县| 鄂温| 唐海县| 库伦旗| 连江县| 舞阳县| 册亨县| 营山县| 赫章县| 四川省| 沾益县| 桂阳县| 通榆县| 密山市| 卢龙县| 定西市| 梧州市| 阿拉善右旗| 荔波县| 获嘉县| 德格县| 尉氏县| 普陀区| 那曲县| 托克逊县| 泸州市| 朔州市| 扶沟县|