热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

nginx服务器使用alias设置虚拟目录

在笔者的环境,设置documentRoot目录为:root/data0/htdocs/NetBeansProjects/_example/passport;设置php文件转发给fastcgi:location~.*\.(php|php5)?${#fastcgi_passunix:/tmp/php-cgi.sock;fa
在笔者的环境,设置documentRoot目录为:
root /data0/htdocs/NetBeansProjects/_example/passport;
设置php文件转发给fastcgi:
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
现在的要求是实现二级目录转发,这在apache中很简单,做个二级目录的alias即可:
alias /lowgame/ " /data0/htdocs/NetBeansProjects/_example/lowgame/"
nginx中的对应写法是:
location /lowgame/ {
alias /data0/htdocs/NetBeansProjects/_example/lowgame/;
index index.html index.htm index.php;
}
至此,访问localhost/lowgame/ddd.jpg等非php文件即相当于访问/data0/htdocs/NetBeansProjects/_example/lowgame/ddd.jpg,这已经不成问题。现在很多人都会面临一个问题:我们想当然的希望/lowgame/*.php文件也提交给fastcgi解析,结果并非这样,当我访问localhost/lowgame/ddd.php的时候,fastcgi返回一个错误:
No input file specified.
ddd.php千真万确存在,权限也无问题,显然是fastcgi找不到文件,nginx实际上提交这个路径/data0/htdocs/NetBeansProjects/_example/passport/lowgame/ddd.php,当然找不到了。尝试添加以下代码:
location ~ /lowgame/(.*/)?.*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
但会先匹配到上面的location ~ .*\.(php|php5)?$,在网上搜了一番,没有一个中用的。后来想到apache的虚拟主机配置有个策略就是特定的二级域名写在前面,如果最后都没匹配到,最后再设置一个通用的匹配。nginx是不是也有这个特性呢?把location ~ /lowgame/(.*/)?.*\.(php|php5)?$代码段放到location ~ .*\.(php|php5)?$代码段的前面,终于搞定! 以下是我的nginx配置文件:
user www www;
worker_processes 2;
error_log /data0/logs/nginx_error.log crit;
pid /usr/local/webserver/nginx/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;
server
{
listen 80;
server_name localhost;
index index.html index.htm index.php;
root /data0/htdocs;
#limit_conn crawler 20;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
log_format access ‘$remote_addr - $remote_user [$time_local] “$request” ‘
‘$status $body_bytes_sent “$http_referer” ‘
‘”$http_user_agent” $http_x_forwarded_for’;
access_log /data0/logs/access.log access;
location /status {
stub_status on;
access_log off;
#auth_basic “NginxStatus”;
#auth_basic_user_file conf/htpasswd;
}
}
server
{
listen 80;
server_name localpassport.nb;
index index.html index.htm index.php;
root /data0/htdocs/NetBeansProjects/_example/passport;
access_log /data0/logs/access.log access;
#limit_conn crawler 20;
# 以下的貌似注释掉也会自动加斜线
# optimize_server_names off; 此方法已不推荐使用
server_name_in_redirect off; ## 这两行及下面三行是为了让子目录自动加 /
if (-d $request_filename) {
# rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
location ~ ^/(lowgame|lowproxy|lowadmin|passportadmin)/(.*\.php)$
{
alias /data0/htdocs/NetBeansProjects/_example/$1/$2;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(php|php5)?$ {
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location /lowgame/ {
alias /data0/htdocs/NetBeansProjects/_example/lowgame/;
}
location /lowproxy/ {
alias /data0/htdocs/NetBeansProjects/_example/lowproxy/;
}
location /lowadmin/ {
alias /data0/htdocs/NetBeansProjects/_example/lowadmin/;
}
location /passportadmin/ {
alias /data0/htdocs/NetBeansProjects/_example/passportadmin/;
}
}
}
注:location的写法:
location = / {…} #等号精确匹配
location path {…} #路径名表示匹配所有以这开头的,因此/表示匹配所有
loation ~ regex {…} #~后接正则表达式,按正则匹配
location ^~ regex {…} #^即取非之意,应该是表示不匹配regex的时候,尝试用过,不太好用。比如:
server {
index index.html index.htm index.php;
location ~ ^/test/ {
index index.htm index.html index.php;
}
}
意思很好理解,访问localhost/test/时匹配location ~ ^/test/的设置,即显示index.htm,如果是这样呢:
server {
index index.html index.htm index.php;
location ^~ ^/test/ {
index index.htm index.html index.php;
}
}
此时的意义显然不是“除test/目录以外的所有访问均匹配location ^~ ^/test/设置”,笔者访问localhost/,仍然显示index.html,而不是index.htm。

推荐阅读
  • 使用 ModelAttribute 实现页面数据自动填充
    本文介绍了如何利用 Spring MVC 中的 ModelAttribute 注解,在页面跳转后自动填充表单数据。主要探讨了两种实现方法及其背后的原理。 ... [详细]
  • 本文由chszs撰写,详细介绍了Apache Mina框架的核心开发流程及自定义协议处理方法。文章涵盖从创建IoService实例到协议编解码的具体步骤,适合希望深入了解Mina框架应用的开发者。 ... [详细]
  • Awk是一款功能强大的文本分析与处理工具,尤其在数据解析和报告生成方面表现突出。它通过读取由换行符分隔的记录,并按照指定的字段分隔符来划分和处理这些记录,从而实现复杂的数据操作。 ... [详细]
  • 为何Compose与Swarm之后仍有Kubernetes的诞生?
    探讨在已有Compose和Swarm的情况下,Kubernetes是如何以其独特的设计理念和技术优势脱颖而出,成为容器编排领域的领航者。 ... [详细]
  • 本文详细介绍了在Windows系统中如何配置Nginx以实现高效的缓存加速功能,包括关键的配置文件设置和示例代码。 ... [详细]
  • 我的读书清单(持续更新)201705311.《一千零一夜》2006(四五年级)2.《中华上下五千年》2008(初一)3.《鲁滨孙漂流记》2008(初二)4.《钢铁是怎样炼成的》20 ... [详细]
  • SPFA算法详解与应用
    当图中包含负权边时,传统的最短路径算法如Dijkstra不再适用,而Bellman-Ford算法虽然能解决问题,但其时间复杂度过高。SPFA算法作为一种改进的Bellman-Ford算法,能够在多数情况下提供更高效的解决方案。本文将详细介绍SPFA算法的原理、实现步骤及其应用场景。 ... [详细]
  • 本文详细对比了HashMap和HashTable在多线程环境下的安全性、对null值的支持、性能表现以及方法同步等方面的特点,帮助开发者根据具体需求选择合适的数据结构。 ... [详细]
  • 神策数据分析基础
    本文介绍了基于用户行为的数据分析方法,包括业务问题的提出与定义、具体行为的识别及统计分析流程。同时,详细阐述了如何利用事件模型(Event Model)来描述用户行为,以及在实际应用中的案例分析。 ... [详细]
  • 本文介绍了如何通过安装和配置php_uploadprogress扩展来实现文件上传时的进度条显示功能。通过一个简单的示例,详细解释了从安装扩展到编写具体代码的全过程。 ... [详细]
  • 本文探讨了当通过Nginx访问网站时出现504 Gateway Timeout错误的解决方案,特别是当请求处理时间超过30秒时的情况。文章提供了调整PHP-FPM配置的具体步骤,以延长请求超时时间。 ... [详细]
  • 本文详细探讨了如何根据不同的应用场景选择合适的PHP版本,包括多版本切换技巧、稳定性分析及针对WordPress等特定平台的版本建议。 ... [详细]
  • 搭建个人博客:WordPress安装详解
    计划建立个人博客来分享生活与工作的见解和经验,选择WordPress是因为它专为博客设计,功能强大且易于使用。 ... [详细]
  • 在使用 Nginx 作为服务器时,发现 Chrome 能正确从缓存中读取 CSS 和 JS 文件,而 Firefox 却无法有效利用缓存,导致加载速度显著变慢。 ... [详细]
  • 本文探讨了在Windows系统中运行Apache服务器时频繁出现崩溃的问题,并提供了多种可能的解决方案和建议。错误日志显示多个子进程因达到最大请求限制而退出。 ... [详细]
author-avatar
西瓜246
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有