Created
August 9, 2017 06:46
-
-
Save prosenjit-manna/db8a8b8c2c2afa6cc8a079eee81a30ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Virtual Hosts | |
# | |
# Required modules: mod_log_config | |
# If you want to maintain multiple domains/hostnames on your | |
# machine you can setup VirtualHost containers for them. Most configurations | |
# use only name-based virtual hosts so the server doesn't need to worry about | |
# IP addresses. This is indicated by the asterisks in the directives below. | |
# | |
# Please see the documentation at | |
# <URL:http://httpd.apache.org/docs/2.4/vhosts/> | |
# for further details before you try to setup virtual hosts. | |
# | |
# You may use the command line option '-S' to verify your virtual host | |
# configuration. | |
# | |
# VirtualHost example: | |
# Almost any Apache directive may go into a VirtualHost container. | |
# The first VirtualHost section is used for all requests that do not | |
# match a ServerName or ServerAlias in any <VirtualHost> block. | |
# | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev" | |
ServerName localhost | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/halmaritea.com" | |
ServerName halmaritea.com | |
ServerAlias *.halmaritea.com | |
</VirtualHost> | |
<VirtualHost *:443> | |
DocumentRoot "/Users/prosenjitmanna/dev/halmaritea.com" | |
ServerName halmaritea.com | |
ServerAlias *.halmaritea.com | |
SSLEngine on | |
SSLCertificateFile "/Users/prosenjitmanna/dev/ssh-key/server.crt" | |
SSLCertificateKeyFile "/Users/prosenjitmanna/dev/ssh-key/server.key" | |
#SSLCertificateFile "/Users/prosenjitmanna/dev/ssh-key/test.crt" | |
#SSLCertificateKeyFile "/Users/prosenjitmanna/dev/ssh-key/test.pem" | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/zairatea.com" | |
ServerName www.zairatea.com | |
ServerAlias *.zairatea.com | |
</VirtualHost> | |
<VirtualHost *:443> | |
DocumentRoot "/Users/prosenjitmanna/dev/zairatea.com" | |
ServerName www.zairatea.com | |
ServerAlias *.zairatea.com | |
SSLCertificateFile "/Users/prosenjitmanna/dev/ssh-key/server.crt" | |
SSLCertificateKeyFile "/Users/prosenjitmanna/dev/ssh-key/server.key" | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/" | |
ServerName ec2-54-88-217-36.compute-1.amazonaws.com | |
ServerAlias *.ec2-54-88-217-36.compute-1.amazonaws.com | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/itobuz/site/" | |
ServerName web2developers2.in | |
ServerAlias *.web2developers2.in | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/liberty-realty-wordpress/" | |
ServerName sycode.developmentdemo.net | |
ServerAlias *.sycode.developmentdemo.net | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/zairatea.com/" | |
ServerName ec2-52-203-15-208.compute-1.amazonaws.com | |
ServerAlias *.ec2-52-203-15-208.compute-1.amazonaws.com | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/liberty-realty-wordpress/" | |
ServerName code.developmentdemo.net | |
ServerAlias *.developmentdemo.net | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/sexydate.com" | |
ServerName sexydate.com | |
ServerAlias sexydate.com | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Users/prosenjitmanna/dev/itobuz/site" | |
ServerName itobuz2.com | |
ServerAlias itobuz2.com | |
</VirtualHost> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment