mirror of
https://github.com/jgeusebroek/docker-spotweb.git
synced 2025-06-03 06:07:23 +02:00
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin _
|
|
|
|
DocumentRoot /var/www/spotweb
|
|
<Directory /var/www/spotweb/>
|
|
RewriteEngine on
|
|
RewriteCond %{REQUEST_URI} !api/
|
|
RewriteRule ^api/?$ index.php?page=newznabapi [QSA,L]
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost> |