nginx配置指定访问路径访问
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx配置指定访问路径访问相关的知识,希望对你有一定的参考价值。
server {
listen 8992;
server_name localhost;
location / { #此处填根目录
index index.php index.html index.htm;
root /usr/local/nginx/html/zabbix; #配置访问的路径
}
location ~ .php$ {
root /usr/local/nginx/html/zabbix; #配置访问的路径
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
两个路径正常
以上是关于nginx配置指定访问路径访问的主要内容,如果未能解决你的问题,请参考以下文章