5420622ea2
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11367 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
LoadModule rewrite_module /usr/lib64/apache2-prefork/mod_rewrite.so
|
|
RewriteEngine On
|
|
RewriteCond %{SERVER_PORT} 80
|
|
RewriteCond %{REQUEST_URI} xcatws
|
|
RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [R,L]
|
|
|
|
<Files xcatws.cgi>
|
|
Order allow,deny
|
|
Allow from all
|
|
</Files>
|
|
|