17 lines
775 B
Text
17 lines
775 B
Text
RewriteEngine On
|
|
|
|
# This rule is meant for autotest installations under a single directory,
|
|
# such as when pulling the code from git or from a tarball.
|
|
RewriteCond /usr/local/autotest/frontend/client/www/autotest.MoblabSetupClient -d
|
|
RewriteRule ^/moblab_setup((?!\/server\/).*)$ /usr/local/autotest/frontend/client/www/autotest.MoblabSetupClient/$1
|
|
|
|
# This rule is meant for autotest installations from a package such as RPM.
|
|
RewriteCond /usr/share/autotest/frontend/client/www/autotest.MoblabSetupClient -d
|
|
RewriteRule ^/moblab_setup((?!\/server\/).*)$ /usr/share/autotest/frontend/client/www/autotest.MoblabSetupClient/$1
|
|
|
|
<Location "/moblab_setup">
|
|
DirectoryIndex MoblabSetupClient.html
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
</Location>
|