#2109
Using NGINX Reverse Proxy for client certificate authentication : https://community.openhab.org/t/using-nginx-reverse-proxy-for-client-certificate-authentication-start-discussion/43064
Just another Code Snippet site
#2109
Using NGINX Reverse Proxy for client certificate authentication : https://community.openhab.org/t/using-nginx-reverse-proxy-for-client-certificate-authentication-start-discussion/43064
#2100
Source: Apache : reverse proxy https | Vincent Liefooghe
#2032
Source: 2F instead of in URL – Apache rewrite module and NE flag |My Technical Blog
#1703
Configuration files are stored here : /opt/rh/httpd24/root/etc/httpd
#1692
Comment héberger plusieurs applications sur le même serveur web Apache ? Tutoriel sur la configuration de VirtualHost pour définir plusieurs ports. Source: Apache : Héberger plusieurs apps sur différents ports | Apache | IT-Connect
#1635
Source: Serving Static Files (such as js, css and images) (web.py)
#1391
Install HTTPD Check Proxy mod is installed/enabled : and look for “proxy_balancer” module To add a reverse proxy settings, create a new .conf file un /etc/httpd/conf.d/ like : In case of error like : Permission denied: proxy: HTTP: attempt to connect to You must disable SELinux : => SELINUX=disabled
#1348
Install Git Checkout Let’sEncrypt Generate Renew In Apache config : In Nginx config (use full chain certificate) :
#980
Blog & Tutos : setting-up-a-load-balanced-oracle-weblogic-cluster-in-amazon-ec2 full-weblogic-load-balancing-in-ec2-with-amazon-elb Basic clustering with Weblogic 12c and Apache Web Server http://blog.c2b2.co.uk/2010/10/configuring-and-testing-weblogic.html http://weblogic-wonders.com/weblogic/2010/12/11/configure-apache-webserver-with-weblogic-server/ http://www.appeon.com/support/documents/appeon_online_help/1.5/web_server_configuration_guide/ch02s02s03.html https://support.rackspace.com/how-to/simple-load-balancing-with-apache/ Apache Weblogic Module configuration : http://www.inf.fu-berlin.de/lehre/WS00/SWT/BEA/documentation/docs51/admindocs/apache_bridge.html WebLogic Doc : https://docs.oracle.com/middleware/1212/webtier/PLGWL/apache.htm#PLGWL395 https://docs.oracle.com/cd/E21764_01/web.1111/e16435/apache.htm#PLGWL395 https://docs.oracle.com/cd/E11035_01/wls100/plugins/apache.html https://docs.oracle.com/cd/E13222_01/wls/docs81/plugins/apache.html https://docs.oracle.com/cd/E13222_01/wls/docs103/cluster/setup.html https://docs.oracle.com/cd/E13222_01/wls/docs81/cluster/overview.html https://docs.oracle.com/cd/E11035_01/wls100/cluster/overview.html
#731
sudo apt-get install apache2 php5 libapache2-mod-php5 sudo groupadd www-data sudo usermod -g www-data www-data sudo chown -R pi /var/www echo “” > /var/www/index.php sudo service apache2 restart sudo apt-get install mysql-server mysql-client php5-mysql sudo apt-get install phpmyadmin sudo apt-get install vsftpd sudo vi /etc/vsftpd.conf Change : anonymous_enable=NO, Uncomment : local_enable=YES write_enable=YES add : force_dot_files=YES sudo […]