我正在尝试,没有运气(获得404),让nginx为某个子目录下的请求提供静态文件,而所有其他请求都是反向代理的。例如,我希望http://example.com/project/static/index.html和http://example.com/project/static/subdir/file2.html的请求映射到/var/www/example.com/htdocs/index.html和/var/www/example.com/htdocs/subdir/ file2.html分别。
所有其他请求应反向代理。例如,http://example.com/project/thisWillBeProxied.html和http://example.com/project/subdir/soWillThis.html
这是我的有效nginx个人资料
server {
listen 8080;
server_name example.com;
access_log /var/www/example.com/log/nginx.access.log;
error_log /var/www/example.com/log/nginx_error.log debug;
location / {
proxy_pass http://reverse-proxy-host/;
}
location ^~ /project/static/ {
alias /var/www/example.com/htdocs;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/nginx-default;
}
}
答案 0 :(得分:1)
error log,有助于解释发生了什么。
您的配置:
location ^~ /project/static/ {
alias /var/www/example.com/htdocs;
}
它完全符合您所写的内容。它会将URI中的/project/static/
替换为文件路径/var/www/example.com/htdocs
。因此,如果请求看起来像http://example.com/project/static/index.html
,那么nginx将尝试打开/var/www/example.com/htdocsindex.html
。我假设您不想提供/var/www/example.com/htdocsindex.html
,但是您希望提供/var/www/example.com/htdocs/index.html
,那么您应该写一下:
location ^~ /project/static/ {
alias /var/www/example.com/htdocs/;
}
答案 1 :(得分:0)
我打算尝试使用它: http://wiki.nginx.org/HttpCoreModule#error_page
读取“如果在重定向期间无需更改URI,则可以将错误页面的处理重定向到指定位置”
我不必这样使用静态目录。 :)