til

#TIL : Enable reverse proxy in CentOS

I learned on 2017-09-01 about proxy, sysadmin, web

CentOS with SELinux enabled by default will block any http proxy connection. So you have to enable this permission.

Temporary enable

$ /usr/sbin/setsebool httpd_can_network_connect 1

Permanent enable

$ /usr/sbin/setsebool -P httpd_can_network_connect 1

Enjoyed this?

Leave a kudo — it means a lot.

0