Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Last active December 14, 2022 07:56
Show Gist options
  • Save tbvinh/29f38d311e8697ab286a2c7ddeb87fbb to your computer and use it in GitHub Desktop.
Save tbvinh/29f38d311e8697ab286a2c7ddeb87fbb to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName myoser.com
ServerAlias *.myoser.com
DocumentRoot /var/www/myoser.com/htdocs
<Directory /var/www/myoser.com/htdocs>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}
#RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment