【发布时间】:2016-04-22 06:33:22
【问题描述】:
我有一台虚拟机,我的公司将其用作 Web 服务器。我们有一个内部 PHP 应用程序,现在需要向该服务器添加一个站点。问题是虚拟机只有一个 IP。我将 Windows DNS 管理器设置为指向此 IP,但它只会拉起主站点。有没有办法将 nginx 配置到它将选择要拉起的站点的位置?
这是我的第一个站点配置:
server {
server_name develop.aspirion.com;
root /var/www/vhosts/develop.aspirion.com;
index index.html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
这是我的第二个站点配置:
server {
server_name aspirion.com;
access_log /var/log/nginx/aspirion.com-access.log;
error_log /var/log/nginx/aspirion.com-error.log;
root /var/virtual/aspirion.com/master/current/webroot;
index index.php;
location / {
# error_page 404 /index.php;
location = / {
error_page 404 =200 /index.html;
}
location ~* ^.+\.(?:css|js|jpe?g|gif|htc|ico|png|html|xml)$ {
access_log off;
expires 30d;
tcp_nodelay off;
open_file_cache max=3000 inactive=120s;
open_file_cache_valid 45s;
open_file_cache_min_uses 2;
open_file_cache_errors off;
}
location ~* ^.+\.(?:pdf|pptx?)$ {
expires 30d;
tcp_nodelay off;
}
# TODO: never allow private files inside the web root?
location ^~ /sites/default/files/private/ {
internal;
}
location ~* ^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$ {
return 404;
}
try_files $uri $uri/ /index.php?$uri&$args;
}
location = /index.php {
fastcgi_pass phpcgi;
}
location = /.git {
return 404;
}
location = /patches {
return 404;
}
location = /backup {
return 404;
}
location = /robots.txt {
access_log off;
}
location = /humans.txt {
access_log off;
try_files $uri $uri/ /index.php?$uri&$args;
}
location = /rss.xml {
try_files $uri $uri/ /index.php?$uri&$args;
}
location = /sitemap.xml {
try_files $uri $uri/ /index.php?$uri&$args;
}
location = /favicon.ico {
try_files /favicon.ico =204;
}
location ~* ^.+\.php$ {
return 404;
}
}
server {
server_name munin.aspirion.com;
include sites-available/admin.conf;
}
【问题讨论】:
标签: php nginx dns server webserver