linux配置apache2


//apache2 install
sudo apt-get install apache2
//修改apache2服務器的根目錄
1.sudo gedit /etc/apache2/sites-available/000-default.conf
2.將DocumentRoot /var/www/修改成想要的目錄 DocumentRoot /home/janson/workspace
3.sudo service apache2 restart
若是上面還不行 修改權限
4.sudo gedit /etc/apache2/apache2.conf
<Directory /home/yourdir>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
5.sudo service apache2 restart
//she zhi yuming
sudo vim /etc/hosts //打開hosts文件
在hosts文件中添加 127.0.0.1 你設置的域名
cd /etc/apache2/sites-available //進入目錄
sudo cp 000-default.conf newname.conf //複製並重命名爲newname
sudo vim xunizhuji.conf //打開文件編輯
修改ServerName 後面字段爲你配置的域名
將改文件鏈接到 sites-enabled 文集夾
sudo ln -s /etc/apache2/sites-available/newname.conf ../sites-enabled/ //連接文件夾
sudo /etc/init.d/apache2 restart //重啓服務apache

相關文章
相關標籤/搜索