首页 > 代码库 > nginx多站点设置
nginx多站点设置
如无实际生产环境(域名),可以修改本地host文件,将两个域名指向这个服务器,对两个域名进行访问。
nginx多站点设置:
试验环境:CentOS6.5 64bit lnmp
nginx配置文件目录:/usr/local/webserver/nginx/conf
这里,我使用多个配置文件的方式进行配置:
修改nginx.conf文件内容,去除所有server段的代码,
增加最后一行include 站点配置文件目录
http {
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
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.log main;
sendfile on;
keepalive_timeout 65;
tcp_nopush on;
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;
# server {
# listen 80;
# server_name _;
# access_log /media/raid10/logs/nginx.access.log main;
# server_name_in_redirect off;
# location / {
# root /usr/share/nginx/html;
# index index.html;
# }
# }
include /usr/local/webserver/nginx/vhost/*.conf;
}
在/usr/local/webserver/nginx/vhost/下创建自己的所有站点文件命名.conf文件,文件内容为server{...}
域名1:www.zabbix.com.conf
server {
listen 80;
server_name www.zabbix.com;
index index.html index.htm index.php;
root /media/raid10/htdocs/zabbix;
error_page 404 /index.php;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9099;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
}
域名2:www.zabbix1.com.conf
server {
listen 80;
server_name www.zabbix1.com;
index index.html index.htm index.php;
root /media/raid10/htdocs/zabbix_extend;
error_page 404 /index.php;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9099;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
}
重启nginx服务器即可达到多站点同一台服务器。
本文出自 “我们应该互相知悉” 博客,请务必保留此出处http://lshunchang.blog.51cto.com/9242952/1571731
nginx多站点设置