1、我们需要知道操作的Apache配置文件在Linux服务器上面的路径:
/etc/apache2/,用cd命令即可:cd /etc/apache2/
在服务器上,我们通过ls命令查看配置文件:
2、需要用到的是设置端口的文件ports.conf 以及sites-enabled目录下面的000-default即可。
3、在ports.conf文件里面添加:这里面添加了两个端口,分别是10003和10001,如果需要一个,添加一个。
NameVirtualHost *:10003
Listen 10003
NameVirtualHost *:10001
Listen 10001
4、完成后,接下来改变000-default文件设置:
<VirtualHost *:10003>
ServerAdmin [email protected]
DocumentRoot /home/www %修改的目录
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/www> %修改的目录
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /php/ "/home/www/cgi-bin"
<Directory "/home/www/cgi-bin">
AllowOverride None
AddHandler cgi-script .py .sh .cgi .pl .asp .c
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ScriptAlias /php/ "/home/www/web"
<Directory "/home/www/web">
AllowOverride None
AddHandler cgi-script .py .sh .cgi .pl .asp .c
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
5.别忘了重启Apache /etc/init.d/apache2 restart,这样就可以访问端口了.
有时访问时还是会出现问题,不能连接server,需要修改apache2.conf文件中的部分:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
修改为:
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
# Require all denied
</Directory>