mirror of
https://github.com/timendum/Youtube-dl-WebUI.git
synced 2024-11-15 03:24:38 +08:00
c97685a7d6
Small changes
11 lines
343 B
Text
11 lines
343 B
Text
<VirtualHost *:80>
|
|
DocumentRoot /www/youtube-dl
|
|
<Directory /www/youtube-dl>
|
|
# enable the .htaccess rewrites
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from All
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/youtube-dl_error.log
|
|
CustomLog /var/log/apache2/youtube-dl_access.log combined
|
|
</VirtualHost>
|