michihide's blog

技術メモおよび雑感

リポジトリ公開用サイトの作成

m-hotta@gaia:~$ sudo mkdir /var/www/repos
m-hotta@gaia:~$ sudo chown m-hotta /var/www/repos/
m-hotta@gaia:~$ grep -Ew -C 1 Include /etc/httpd/conf/httpd.conf
#
#Include conf.d/*.conf

  • -
NameVirtualHost *:80 Include conf.d/*.conf m-hotta@gaia:~$ sudo cat > /etc/httpd/conf.d/repos.conf <<_EOF_ DocumentRoot /var/www/repos ServerName repos.net-newbie.com CustomLog logs/repos_log combined ErrorLog logs/repos-error_log Options +Indexes _EOF_ root@gaia:~# sudo /sbin/service httpd reload

(repos.net-newbie.com は、別途 DNS で正引きの設定をしておく)