16
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LinuxMintでのApache2のDocumentRoot変更

Last updated at Posted at 2014-05-02

私的メモ。
Ubuntu派生ディストリビューションのLinuxMintでは、CentOSとはapacheの設定ファイルの構成や設置場所が異なって困ったので備忘録です。

参考サイト:http://www10.atwiki.jp/shirayuu/?page=%20apache2

#Confファイルの場所を調べる
まずはwhereisコマンドでパスの通ってる場所を調べます。

$ whereis apache2
apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz

参考サイトと同じっぽい。

#DocumentRoot の設定

Document Rootの設定
ubuntu では、 /etc/apache2/sites-available/default に Document Root の設定が記述されている。

とのことなので、当該ファイルを開く。

$ vi /etc/apache2/sites-available/default
<VirtualHost *:80>
	ServerAdmin vagrant@localhost

	DocumentRoot /home/vagrant/Share/www #←ここを変更

以上で終わりです。

##追記
UbuntuでApacheを設定する際のハマリどころ
とても詳しくファイル構成が書かれているので、今後困った時に参考になりそうです。

16
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?