You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
<VirtualHost *:80>
|
|
ServerName ssp.example.com
|
|
|
|
DocumentRoot /usr/share/self-service-password/htdocs
|
|
DirectoryIndex index.php
|
|
|
|
AddDefaultCharset UTF-8
|
|
|
|
<Directory /usr/share/self-service-password/htdocs>
|
|
AllowOverride None
|
|
<IfVersion >= 2.3>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order Deny,Allow
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
Alias /rest /usr/share/self-service-password/rest
|
|
|
|
<Directory /usr/share/self-service-password/rest>
|
|
AllowOverride None
|
|
<IfVersion >= 2.3>
|
|
Require all denied
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order Deny,Allow
|
|
Deny from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
LogLevel warn
|
|
ErrorLog /var/log/httpd/ssp_error_log
|
|
CustomLog /var/log/httpd/ssp_access_log combined
|
|
</VirtualHost>
|