Настраиваю cgit + apache2 на Debian по статье отсюда:
есть IP: 111.222.333.444
ОС debian
cgit из пакетов
Хочу ходить на cgit так http://111.222.333.444/cgit
<VirtualHost *:80>
ServerName 111.222.333.444
DocumentRoot /home/projects/www/cgit
DirectoryIndex cgit.cgi
SetEnv CGIT_CONFIG /etc/cgitrc
<Directory "/home/projects/www/cgit">
Options FollowSymlinks ExecCGI
Allow from all
AllowOverride all
Order allow,deny
<Files cgit.cgi>
SetHandler cgi-script
</Files>
</Directory>
<Directory "/home/projects">
Allow from all
</Directory>
</VirtualHost>
Вместо ServerName подставляю IP Это правильно?