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

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

詳解阿里云nginx服務(wù)器多站點(diǎn)的配置

2024-08-30 12:22:14
字體:
供稿:網(wǎng)友
本篇文章主要介紹了阿里云nginx服務(wù)器多站點(diǎn)的配置,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

阿里云nginx服務(wù)器多站點(diǎn)的配置

今天配置了一下多站點(diǎn),記錄一下配置的過程...

1、首先要找到nginx 配置文件之所在,阿里云上的nginx.conf 文件上 /alidata/server/nginx-1.4.4/conf 中。

2、然后在conf目錄下創(chuàng)建一個(gè)vhosts 目錄,  這個(gè)目錄是用來存放不同站點(diǎn)的配置文件的。

3、然后呢, 在nginx.conf 最后 加入一行 include /alidata/server/nginx/conf/vhosts/*.conf;

user www www; worker_processes 1;  error_log /alidata/log/nginx/error.log crit; pid    /alidata/server/nginx/logs/nginx.pid;  #Specifies the value for maximum file descriptors that can be opened by this process.  worker_rlimit_nofile 65535;  events  {  use epoll;  worker_connections 65535; }   http {   include    mime.types;   default_type application/octet-stream;    #charset gb2312;    server_names_hash_bucket_size 128;   client_header_buffer_size 32k;   large_client_header_buffers 4 32k;   client_max_body_size 8m;    sendfile on;   tcp_nopush   on;    keepalive_timeout 60;    tcp_nodelay on;    fastcgi_connect_timeout 300;   fastcgi_send_timeout 300;   fastcgi_read_timeout 300;   fastcgi_buffer_size 64k;   fastcgi_buffers 4 64k;   fastcgi_busy_buffers_size 128k;   fastcgi_temp_file_write_size 128k;    gzip on;   gzip_min_length 1k;   gzip_buffers   4 16k;   gzip_http_version 1.0;   gzip_comp_level 2;   gzip_types    text/plain application/x-javascript text/css application/xml;   gzip_vary on;   #limit_zone crawler $binary_remote_addr 10m;   log_format '$remote_addr - $remote_user [$time_local] "$request" '          '$status $body_bytes_sent "$http_referer" '          '"$http_user_agent" "$http_x_forwarded_for"';             # 加入下面一行 表示將 vhosts 下面所有的 conf 文件包含進(jìn)來   include /alidata/server/nginx/conf/vhosts/*.conf; } 

4、然后,就是在vhosts 目錄下寫 你對(duì)應(yīng)站點(diǎn)的 conf 文件了。下面給出一個(gè)范例

server {   listen    80;   # 這個(gè)表示 網(wǎng)站域名, 可以是二級(jí)甚至多級(jí)域名   server_name localhost demo.com www.demo.com test.demo.com;    # 表示默認(rèn)索引文件   index index.html index.htm index.php;      # 該站點(diǎn)對(duì)應(yīng)的網(wǎng)站根目錄所在   root /alidata/www/demo;    location ~ .*/.(php|php5)?$   {     #fastcgi_pass unix:/tmp/php-cgi.sock;     fastcgi_pass 127.0.0.1:9000;     fastcgi_index index.php;     include fastcgi.conf;   }   location ~ .*/.(gif|jpg|jpeg|png|bmp|swf)$   {     expires 30d;   }   location ~ .*/.(js|css)?$   {     expires 1h;   }    # 偽靜態(tài)規(guī)則   include /alidata/server/nginx/conf/rewrite/phpwind.conf;   access_log /alidata/log/nginx/access/phpwind.log; } 

5、如果還要繼續(xù)添加, 直接復(fù)制文件。然后修改一下 server_name, root, 和access_log(如果有必要的話) 就OK了。

6、然后,不要立馬重啟nginx,應(yīng)該要先測(cè)試一下nginx 配置文件是否正常. 找到nginx 的 sbin目錄。 注意, 這個(gè)地方是nginx 的sbin 目錄(這個(gè)目錄與nginx 的conf 目錄是同級(jí)目錄)。linux 下有許多與sbin同名的目錄。 容易搞錯(cuò)。 在阿里云服務(wù)器上一般默認(rèn)的目錄是 /alidata/server/nginx-1.4.4/sbin。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 禹州市| 吉首市| 来宾市| 平邑县| 沧州市| 浦江县| 新宾| 咸阳市| 襄城县| 博白县| 大洼县| 乌拉特前旗| 六安市| 镇康县| 博爱县| 泸水县| 渭南市| 高青县| 白山市| 肇东市| 辛集市| 恭城| 新源县| 乐东| 克什克腾旗| 江孜县| 抚顺市| 广平县| 西盟| 项城市| 商洛市| 麻江县| 新绛县| 惠水县| 南丹县| 青龙| 尉氏县| 田东县| 屏东县| 沙河市| 辛集市|