Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Virtual hosts
- Include conf/extra/httpd-vhosts.conf
- <VirtualHost *:80>
- DocumentRoot "C:/Apache24/htdocs/"
- </VirtualHost>
- <VirtualHost *:443>
- DocumentRoot "C:/Apache24/htdocs/"
- </VirtualHost>
- <VirtualHost *:80>
- DocumentRoot "C:/Apache24/htdocs/tardismedia.ca"
- ServerName tardismedia.ca
- ServerAlias www.tardismedia.ca
- </VirtualHost>
- <VirtualHost *:80>
- DocumentRoot "C:\Apache24\htdocs\doctorwho.ca"
- ServerName doctorwho.ca
- ServerAlias www.doctorwho.ca
- </VirtualHost>
- <VirtualHost *:443>
- DocumentRoot "C:/Apache24/htdocs/tardismedia.ca"
- ServerName tardismedia.ca
- ServerAlias www.tardismedia.ca
- SSLEngine on
- </VirtualHost>
- <VirtualHost *:443>
- ServerName doctorwho.ca
- ServerAlias www.doctorwho.ca
- DocumentRoot "C:\Apache24\htdocs\doctorwho.ca"
- SSLEngine on
- </VirtualHost>
- # Configure mod_proxy_html to understand HTML4/XHTML1
- <IfModule proxy_html_module>
- Include conf/extra/proxy-html.conf
- </IfModule>
- #This include was written by the apache gui program
- Include "C:/Apache24/conf/apachegui.conf"
- # no certificates specification
- Protocols h2 http/1.1
- # this needs to remove all existing DNS TXT records for
- # _acme-challenge.mydomain.com and create a new one with
- # content "challenge-data"
- <Location "/md-status">
- SetHandler md-status
- </Location>
- MDStapling on
- MDomain tardismedia.ca www.tardismedia.ca
- MDomain doctorwho.ca www.doctorwho.ca
- MDCertificateAgreement https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf
- MDPrivateKeys RSA 4096
- MDRequireHttps temporary
- MDStapling on
- MDMustStaple on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement