Skip to content

Instantly share code, notes, and snippets.

@jparbros
Created March 29, 2018 18:22
Show Gist options
  • Select an option

  • Save jparbros/ac2f4369e5059d8cca15475fc2eeddcd to your computer and use it in GitHub Desktop.

Select an option

Save jparbros/ac2f4369e5059d8cca15475fc2eeddcd to your computer and use it in GitHub Desktop.
NameVirtualHost *:80
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName admin.medifin.com.mx
ServerAlias admin.medifin.com.mx
ServerAdmin jaraujo@metricas.mx
DocumentRoot /home/deployer/html/medifin/public
<Directory "/home/deployer/html/medifin/public">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel debug
ErrorLog ${APACHE_LOG_DIR}/admin.medifin-error.log
CustomLog ${APACHE_LOG_DIR}/admin.medifin-access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
RewriteEngine on
RewriteCond %{SERVER_NAME} =admin.medifin.com.mx
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
@zuriel-diaz

Copy link
Copy Markdown

NameVirtualHost *:80

<VirtualHost *:80>
ServerName blog.medifin.com.mx
ServerAlias blog.medifin.com.mx

    ServerAdmin jaraujo@metricas.mx
    DocumentRoot /home/deployer/html/blog

    <Directory "/home/deployer/html/blog">
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
            Require all granted
    </Directory>

    LogLevel debug

    ErrorLog ${APACHE_LOG_DIR}/blog.medifin-error.log
    CustomLog ${APACHE_LOG_DIR}/blog.medifin-access.log combined

RewriteEngine on
RewriteCond %{SERVER_NAME} =blog.medifin.com.mx
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment