Nginx设置访问服务器某个目录

2021-09-06 11:01:41 浏览数 (1)

1 首先,设置权限

配置需要访问的log目录有权限

代码语言:javascript复制
chmod -R /.../...

在nginx.conf文件中,添加或覆盖下面一行

代码语言:javascript复制
user root;

2 配置server节点

代码语言:javascript复制
server {
listen 64001;
server_name beta3.hadoop.feidai.com;
charset utf-8;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
autoindex on;
}
location /feidai-kafka-kudu/bin/slog {
root /root;
autoindex on;
}
location /feidai-canal-kafka/bin/slog {
root /root;
autoindex on;
}
......

其中添加了两个location节点,配置autoindex on;使其能展示目录。 在location节点里面配置alas会把指定路径当作文件路径, 而配置root会把指定路径拼接到文件路径后,再进行访问。 这里使用root配置。 访问实例: 整合到监控平台的效果如下图

0 人点赞