adkron (owner)

Revisions

gist: 96468 Download_button fork
public
Public Clone URL: git://gist.github.com/96468.git
apache2.conf
1
2
3
4
5
6
7
8
9
10
11
#Other stuff, mostly comments
 
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-2.1.3/ext/apache2/mod_passenger.so
PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.1.3
PassengerRuby /usr/bin/ruby1.8
 
# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/
 
NameVirtualHost *:80
 
sites/enables/mammalog
1
2
3
4
5
6
7
<VirtualHost *:80>
    ServerName www.mammalog.com
    ServerAlias mammalog.com *.mammalog.com
    Redirect temp / http://at-home-mommy.blogspot.com
    PassengerEnabled off
</VirtualHost>
 
sites-enabled/akingsoftware
1
2
3
4
5
<VirtualHost *:80>
    ServerName www.akingsoftware.com
    ServerAlias akingsoftware.com *.akingsoftware.com
    DocumentRoot /home/apache/trial/public
</VirtualHost>