国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > Nginx > 正文

CentOS6使用nginx搭建web網(wǎng)站服務(wù)的方法

2024-08-30 12:24:53
字體:
供稿:網(wǎng)友

利用CentOS6搭建簡易的web服務(wù)

提示: 其中沒有涉及到MySQl、MongoDB的安裝和使用,包括docker容器等,使用nginx反向代理靜態(tài)服務(wù)

centOS服務(wù)器

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

在window系統(tǒng)下安裝xshell和xftp, 保證可以系統(tǒng)訪問centOS系統(tǒng)

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

登錄完成之后安裝nginx

下面是需要下載的文件:

首先安裝wget # yum install wget nginx以來與gcc的編譯環(huán)境 # yum install gcc-c++ nginx的http模塊需要使用pcre來解析正則表達(dá)式 # 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 繼續(xù)編譯 # 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文件開啟,當(dāng)然也可全局配置

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

nginx配置

以下是nginx配置的部分參考

# http serverserver {  listen    80;  server_name www.didiheng.com;  #charset koi8-r;  #access_log logs/host.access.log main;  access_log off; #緩存日志關(guān)閉  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;    }  }  }            
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 韶山市| 湟源县| 阳谷县| 锦州市| 临桂县| 美姑县| 扬州市| 道孚县| 威宁| 阿拉善盟| 平武县| 红桥区| 榆社县| 任丘市| 鄂伦春自治旗| 定结县| 桓台县| 张北县| 砚山县| 中江县| 且末县| 长寿区| 鲜城| 枣阳市| 沙田区| 讷河市| 兴宁市| 临桂县| 神农架林区| 宝山区| 灌阳县| 即墨市| 从化市| 平塘县| 乐亭县| 鲁山县| 大竹县| 凤庆县| 屏南县| 宜春市| 缙云县|