Setup SSL on nginx Proxy Server Servername

If you are using nginx as your reverse proxy server to point your domains to the real hosts and you wish to setup  SSL on your servername use following configuration for your server_name: server { server_name your_server_name_domain_addr; listen 443 ssl; ssl_certificate /your_crt_file_address.crt; ssl_certificate_key /your_key_file_address.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; location / { proxy_set_header Host… Continue reading Setup SSL on nginx Proxy Server Servername

Published
Categorized as Technology

Disable SELINUX permanently

Disabling SELinux is necessary to run many of applications and services such as webservers and etc. The easiest way to disable SELinux is the famous command of “setenforce 0”. while this command disables SELinux fast but it does not provide a permanent solution. To disable SELinux Permanently you need to make changes to “/etc/selinux/config” file.… Continue reading Disable SELINUX permanently

Published
Categorized as Technology