nginx虚拟主机和文件服务器的配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Nginx文件服务器和虚拟主机的配置
的配置文件:
1.游戏服务器:
server
{
listen 80;
server_name ;
index index.html index.htm index.php;
root /data/web/fc/game3w/releases1/public;
location ~ .*\.php$
{
include fcgi.conf;
fastcgi_pass 127.0.0.1:10080;
fastcgi_index index.php;
expires off;
}
access_log /data/logs/.log access;
}
2.客户端的配置:
server
{
listen 80;
server_name ;
index index.html index.htm index.php;
root /data/web/fc/resource;
charset utf-8;
#expires 2h;
location ~* .svn$
{
return 404;
}
location ~ .*\.swf$ {
expires 365d;
}
location ~ .*\.css$ {
expires 365d;
}
location ~ .*\.xml$ {
expires 365d;
}
location ~ .*\.js$ {
expires 365d;
}
location ~ .*\.jpg$ {
expires 365d;
}
location ~ .*\.gif$ {
expires 365d;
}
location ~ .*\.png$ {
expires 365d;
}
location ~ .*\.mp3$ {
expires 365d;
}
location ~ .*\.game$ {
expires 365d;
}
location ~ .*\.lib$ {
expires 365d;
}
access_log off;
}
3.文件服务器的配置:
server
{
listen 9000;
server_name 192.168.26.8;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
index index.html index.htm index.php;
root /data/server/trunk/bin/logs/;
allow all;
}
}