mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-08-05 10:17:49 +00:00
e413f23264
Change-Id: I529160b9e2c31c86aca7c2c1ad32559c43ab4aea
16 lines
344 B
Plaintext
16 lines
344 B
Plaintext
Alias /xcat "/opt/xcat/ui"
|
|
PHPINIDir "/opt/xcat/ui"
|
|
|
|
# Redirect all http request to https
|
|
RewriteEngine On
|
|
RewriteCond %{SERVER_PORT} 80
|
|
RewriteCond %{HTTPS} !=on
|
|
RewriteRule ^/?xcat/(.*) https://%{SERVER_NAME}/xcat/$1 [R,L]
|
|
|
|
<Directory "/opt/xcat/ui">
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|