关于ubuntn下apache2与nginx共存的问题

关于ubuntn下apache2与nginx共存的问题

同一个端口是不能同时有两个程序监听的

我安装的是apache2,操作如下:

我们在ubuntn下运行某些网站时,有的会用到apache,有的会用到nginx。比如php+apache+mysql,.net则需要用到nginx。
他们之间共存的配置:
                找到apach2的目录:etc/apacpe2/ports.conf
                        修改配置:
 原配置文件:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf

Listen 80


    Listen 443



    Listen 443


# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

         将80端口修改为8080(不冲突即可)
修改后为:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf

Listen 8080


    Listen 443



    Listen 443


# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

保存重启即可进入

你可能感兴趣的:(关于ubuntn下apache2与nginx共存的问题)