摘要:Ubuntu - Apache - VistualHost 檔案設定檔位置
因為接手他人的php程式,
臨時給我一個Ubuntu 的Server
然後要去找他的網站在哪裡,
那就得知道他的網站位置
就要去取得Apache設定標,
可惜,這次不是容易找的httpd.conf
而是在/etc/apache2/sites-availabel/default 設定檔。
而要去找他的VisualHost區段,去找DNS與網站目錄的對應位置
<VirtualHost *:80>
ServerAdmin xxxxxxxxxxxxxxxx
ServerName DNS_SERVER_URL(xxxx.com.tw)
DocumentRoot /var/www/xxxxxx/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/xxxxxx/>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/xxxxxx.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/xxxxxxxx.log combined
</VirtualHost>