nginx ssl pfx

This article will explain what to do with nginx ssl pfx. First get the pfx file to your server. In this example we will be using a directory called “ssl” off of the nginx root (where nginx.conf is located). From…

centos redhat change timezone

How do I change my system timezone from the command line without using redhat-config-date? centos redhat change timezone In order to change the timezone of your system you will need to access the file /etc/sysconfig/clock directly: #ZONE=”America/New_York” ZONE=”GMT” UTC=false ARC=false Note: If your…

nginx secure /user drupal

If you are not serving drupal out of a subdirectory use this config example: location / { # This is cool because no php is touched for static content try_files $uri @rewrite; } location @rewrite { Some modules enforce no…

Reset mysql root password

To reset the mysql root password follow these steps 1. Stop running mysql instances # service mysqld stop 1a. If that doesn’t work then kill all running mysql instances # pkill mysql 1. Stop running mysql instances # service mysqld…