mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-05-29 17:23:08 +00:00
15 lines
332 B
Plaintext
15 lines
332 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
|
|
Require all granted
|
|
</Directory>
|