2015-11-07 87 views
1

我的目标是部署多个webapps并通过子域访问它们,我当前在不同的端口上运行它们,我在服务器上运行了nginx,而容器运行的是Apache。Docker在子域上运行

docker run -p 8001:80 -d apache-test1 
docker run -p 8002:80 -d apache-test2 

,我能够通过将

http://example.com:8001 

http://example.com:8002

访问他们,但我想通过子域,而不是

http://example.com:8001 -> http://test1.example.com 
http://example.com:8002 -> http://test2.example.com 

访问它们我使用以下服务器设置在服务器上运行nginx

server { 
    server_name test1.anomamedia.com; 
    location/{ 
     proxy_redirect off; 
     proxy_set_header Host $host ; 
     proxy_set_header X-Real-IP $remote_addr ; 
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ; 
     proxy_pass http://localhost:8001; 
    } 
} 

server { 
    server_name test2.anomamedia.com; 
    location/{ 
     proxy_redirect off; 
     proxy_set_header Host $host ; 
     proxy_set_header X-Real-IP $remote_addr ; 
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ; 
     proxy_pass http://localhost:8002; 
    } 
} 

如果它的任何帮助,这是我的Dockerfile

FROM ubuntu 

RUN apt-get update 
RUN apt-get -y upgrade 

RUN sudo apt-get -y install apache2 php5 libapache2-mod-php5 

# Install apache, PHP, and supplimentary programs. curl and lynx-cur are for debugging the container. 
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install apache2 libapache2-mod-php5 php5-mysql php5-gd php-pear php-apc php5-curl curl lynx-cur 

# Enable apache mods. 
RUN a2enmod php5 
RUN a2enmod rewrite 

EXPOSE 80 

# Copy site into place. 
ADD html /var/www/html 

# Update the default apache site with the config we created. 
ADD apache-config.conf /etc/apache2/sites-enabled/000-default.conf 

# By default, simply start apache. 
CMD /usr/sbin/apache2ctl -D FOREGROUND 
+0

以及实际的问题是什么? –

+0

子域部分不工作,它在问题中... – santi6291

+0

正如https://meta.discourse.org/t/how-do-you-go-on-configuring-another-sub-domain -with-the-nginx-instance-inside-the-docker/16846/16,你可以尝试使用'proxy_pass http://0.0.0.0:8002;'(而不是localhost) – VonC

回答

2

我有类似的问题。另外我经常需要添加和删除容器,所以我不会每次都编辑nginx conf。我的解决方案是使用jwilder/nginx-proxy。

然后你刚开始带外露端口(--expose 80,不-p 80:80)的容器,并添加ENV变量:

-e VIRTUAL_HOST=foo.bar.com 

不要忘记转移你的主要交通nginx的右头:

server { 
    listen  80;# default_server; 
    #send all subdomains to nginx-proxy 
    server_name *.bar.com; 

    #proxy to docker nginx reverse proxy 
    location/{ 
     proxy_set_header X-Real-IP $remote_addr; #for some reason nginx 
     proxy_set_header Host  $http_host; #doesn't pass these by default 
     proxy_pass   http://127.0.0.1:5100; 
    } 

}      
+0

谢谢,我结束了使用jwilder/nginx-proxy哈哈,这是一个伟大的容器 – santi6291