mirror of
https://github.com/timendum/Youtube-dl-WebUI.git
synced 2025-03-01 16:13:35 +08:00
12 lines
343 B
Text
12 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>
|