nginx 配置代理转发以及权限错误处理

nginx 配置代理转发以及权限错误处理

nginx配置代理转发

location /vbh_explorer_server {
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://127.0.0.1:8089/vbh_explorer_server;
}

出现权限错误

2019/12/15 21:12:03 [crit] 23193#0: *6 connect() to 127.0.0.1:8089 failed (13: Permission denied) while connecting to upstream, client: 192.168.0.20, server: _, request: "POST /vbh_explorer_server/get
_block_count HTTP/1.1", upstream: "http://127.0.0.1:8089/vbh_explorer_server/get_block_count", host: "192.168.0.233", referrer: "http://192.168.0.233/"

解决权限错误

  • /usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态

SELinux status:                 enabled
getenforce                 ##也可以用这个命令检查

关闭SELinux:

  • 临时关闭(不用重启机器):

setenforce 0                  ##设置SELinux 成为permissive模式
##setenforce 1 设置SELinux 成为enforcing模式
  • 修改配置文件需要重启机器:

将SELINUX=enforcing改为SELINUX=disabled

你可能感兴趣的:(linux)