#创建目录#
$mkdir /var/www/phperstar
#创建虚拟主机配置文件#
$cd /etc/apache2/sites-enabled/
$vi websitename
#复制一下内容,贴入配置文件,保存退出#
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName www.111cn.net #改成自己想用的域名#
DocumentRoot /var/www/phperstar #放置程序用的目录#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/phperstar> #放置程序用的目录#
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/www.111cn.net_error.log #错误日志目录#
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/www.111cn.net_access.log combined #访问日志目录#
</VirtualHost>
#启用配置文件#
$cd /etc/apache2
$sudo a2ensite websitename
Enabling site phperstar.
To activate the new configuration, you need to run:
service apache2 reload
#重启apache#
$sudo service apache2 reload
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[ OK ]
#绑定hosts#
$vi /etc/hosts
#加入下面自己配置的域名,保存推出#
127.0.1.1 www.111cn.net
|