mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-09-15 08:08:38 +00:00
5a83bf5e63
Change-Id: I945c430685fa2febd914be09f6a6f976783abeec
11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
LoadModule rewrite_module /usr/lib64/apache2-prefork/mod_rewrite.so
|
|
RewriteEngine On
|
|
RewriteCond %{SERVER_PORT} 80
|
|
RewriteCond %{HTTPS} !=on
|
|
RewriteRule ^/?xcatws/(.*) https://%{SERVER_NAME}/xcatws/$1 [R,L]
|
|
|
|
<Files xcatws.cgi>
|
|
Require all granted
|
|
</Files>
|
|
|