Tag Archives: apache
24
Apr

Apache Not Following Symlinks

SElinux will prevent Apache from following symbolic links. You will find that no matter how often you define the options to allow you to FollowSymlink’s it will fail. The issue is that you will need to put SELINUX into permissive. This is done in /etc/selinux/config

Continue Reading →
25
Apr

Upgrading Redmine From 8.6 to 9.3

After more than a year of using Redmine to help us manage our projects it was time to upgrade.  Redmine helps us manage our bug lists, wish lists, and to do lists.  It helps us communicate with our clients effectively and efficiently using a web based media in a consistent format that is easy to [...]

Continue Reading →
12
Mar

Using Subdomains With Localhost

I do a lot of development work locally, running apache2, mysql, postgres, and any number of other things on my personal computer so that I can do my work. This offers me a lot of benefits: it’s faster, it doesn’t rely on an Internet connection, and it allows me to have complete control over my [...]

Continue Reading →
20
Feb

Creating and Installing SSL Certs via SSH

Certificate Signing Request (CSR) Apache + Open SSL Login as root cd /usr/bin/ (/your path to openssl/) openssl genrsa -des3 -out <name_of_your_certificate>.key 1024 You will need to enter a passphrase for your key here, and then enter it again in the next step. openssl req -new -key <name_of_your_certificate>.key -out <name_of_your_certificate>.csr At this point you’ll have [...]

Continue Reading →