在一台服务器/ IP上托管多个域

时间:2017-11-17 02:25:08

标签: apache codeigniter phplist

我已经设置了phpList和我想在一台服务器中添加的Codeigniter项目。

位于/etc/httpd/conf.d/phplist.conf的phpList配置有:

<VirtualHost *:80>
    ServerName phplist.example.com
    ServerAdmin admin@example.com
    DocumentRoot /var/www/phplist-3.0.5/public_html

    LogLevel warn
    ErrorLog /var/log/httpd/phplist_error.log
    CustomLog /var/log/httpd/phplist_access.log combined
</VirtualHost>

这是我可能的CI项目设置,但我不知道如何创建。

<VirtualHost *:80>
    ServerName listcsv.com
    ServerAdmin admin@listcsv.com
    DocumentRoot /var/www/citest/index.php
</VirtualHost>

/etc/httpd/conf/httpd.conf文件下面有一个IncludeOptional conf.d/*.conf所以我认为这将包括phplist上的配置文件。

我不知道应该去哪些设置和配置文件, 我应该在/etc/httpd/conf/httpd.conf上编辑,还是只在/etc/httpd/conf.d/phplist.conf添加phpList配置?

我尝试在http://phplist.example.com访问phplist,但无法访问该网站。

我可以通过访问浏览器上的http://server-ip-address/lists/admin来访问phpList。

另外,我无法访问CI项目。

1 个答案:

答案 0 :(得分:3)

我建议创建存储虚拟主机的目录,以及告诉Apache虚拟主机已准备好为网站提供服务的目录

sudo mkdir /etc/httpd/sites-available # vhost files 
sudo mkdir /etc/httpd/sites-enabled # symbolic links for vhost enabled

告诉Apache在哪里寻找虚拟主机

sudo vim /etc/httpd/conf/httpd.conf

在文件末尾添加此行

IncludeOptional sites-enabled/*.conf

保存并退出。

为每个网站/域创建自己的虚拟主机

sudo vim /etc/httpd/sites-available/example1.com.conf
sudo vim /etc/httpd/sites-available/example2.com.conf
sudo vim /etc/httpd/sites-available/example3.com.conf

启用虚拟主机

sudo ln -s /etc/httpd/sites-available/example1.com.conf /etc/httpd/sites-enabled/example1.com.conf
sudo ln -s /etc/httpd/sites-available/example2.com.conf /etc/httpd/sites-enabled/example2.com.conf
sudo ln -s /etc/httpd/sites-available/example3.com.conf /etc/httpd/sites-enabled/example3.com.conf

我们完成了,重新启动Apache服务器以使更改生效

sudo apachectl restart

请勿忘记将您的域名指向网络服务器的公共IP地址。