If you use a separate proxy server, by default, Kaspersky Web Traffic Security does not encrypt ICAP traffic or authenticate users on your proxy server. The application administrator must independently ensure a secure network connection between your proxy server and Kaspersky Web Traffic Security by using traffic tunneling or iptables.
To install the nginx service:
echo "proxy=http://<proxy server name>:8080" >> /etc/yum.conf
echo 'Acquire::https::Proxy "http://<proxy server name>:8080";' >> /etc/apt/apt.conf
echo 'Acquire::http::Proxy "http://<proxy server name>:8080";' >> /etc/apt/apt.conf
HTTP_PROXY="http://<proxy server name>:8080"
HTTPS_PROXY="http://<proxy server name>:8080"
RPOXY_ENABLED="yes"
Run the reboot
command.
echo "proxy=http://<user name>:<password>@<proxy server name>:8080" >> /etc/yum.conf
echo 'Acquire::http::Proxy "http://<user name>:<password>@<proxy server name>:8080";' >> /etc/apt/apt.conf
echo 'Acquire::https::Proxy "http://<user name>:<password>@<proxy server name>:8080";' >> /etc/apt/apt.conf
HTTP_PROXY="http://<user name>:<password>@<proxy server name>:8080"
HTTPS_PROXY="http://<user name>:<password>@<proxy server name>:8080"
RPOXY_ENABLED="yes"
Run the reboot
command.
yum install -y epel-release
echo '[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/rhel/7/$basearch/
gpgcheck=0
enabled=1' > /etc/yum.repos.d/nginx.repo
zypper addrepo -G -t yum -c 'http://nginx.org/packages/sles/12' nginx
yum install -y nginx
zypper install nginx
apt-get install nginx
systemctl enable nginx
service nginx start
service nginx status
The Active parameter must contain the active (running) value.
The nginx service will be installed.
Page top