0

我正在尝试在 HP-cloud 上创建一个将通过 nginx 访问的devpi镜像,即 - nginx 侦听端口 80 并用作 devpi 的代理,该代理在同一台机器上使用端口 4040。

我已经配置了一个 HP-cloud 安全组,它为 hp-cloud 中的所有端口(入站和出站)打开(只是开始,当然稍后我会更改它),并启动了一个 ubuntu 14 实例。
我已经为我创建的实例分配了一个公共 IP。
我已经使用 pip 安装了 devpi-server,使用 apt-get 安装了 nginx。
我已按照 devpi 教程页面上的说明进行操作运行
devpi-server --port 4040 --gen-config并将在 nginx-devpi.conf 中创建的内容复制到 nginx.conf 中。
然后,我使用devpi-server --port 4040 --start.
使用sudo nginx.

我的问题如下:当我通过 SSH 连接到运行 nginx 和 devpi 的 hp-instance 并pip install -i http://<public-ip>:80/root/pypi/ simplejson成功执行它时。

但是,当我从笔记本电脑运行相同的命令时,我得到

Downloading/unpacking simplejson
  Cannot fetch index base URL http://<public-ip>:80/root/pypi/
  http://<public-ip>:80/root/pypi/simplejson/ uses an insecure transport scheme (http). Consider using https if <public-ip>:80 has it available
  Could not find any downloads that satisfy the requirement simplejson
Cleaning up...
No distributions at all found for simplejson
Storing debug log for failure in /home/hagai/.pip/pip.log

我认为这可能是安全/网络问题,但我认为情况并非如此,因为curl http://<public-ip>:80当我从笔记本电脑和 HP 实例执行它时返回相同的东西:

{
  "type": "list:userconfig", 
  "result": {
    "root": {
      "username": "root", 
      "indexes": {
        "pypi": {
          "type": "mirror", 
          "bases": [], 
          "volatile": false
        }
      }
    }
  }
}

我也尝试在 HP-cloud 中启动另一个实例并执行pip install -i http://<public-ip>:80/root/pypi/ simplejson,但我遇到了与笔记本电脑相同的错误。

我不明白这两种情况有什么区别,如果有人能解决这种情况,或者知道可能是什么问题,我会很高兴。

我的nginx.conf文件:

user www-data;
worker_processes 4;
pid /run/nginx.pid;

    events {
        worker_connections 768;
        # multi_accept on;
    }

    http {

        server {
            server_name localhost;   
            listen 80;
            gzip             on;
            gzip_min_length  2000;
            gzip_proxied     any;
            #gzip_types       text/html application/json; 

            proxy_read_timeout 60s;
            client_max_body_size 64M;

            # set to where your devpi-server state is on the filesystem
            root /home/ubuntu/.devpi/server;  

            # try serving static files directly
            location ~ /\+f/ {
                error_page 418 = @proxy_to_app;
                if ($request_method != GET) {
                    return 418; 
                }
                try_files /+files$uri @proxy_to_app;
            }
            # try serving docs directly
            location ~ /\+doc/ {
                try_files $uri @proxy_to_app;
            }
            location / {
                error_page 418 = @proxy_to_app;
                return 418;
            }
            location @proxy_to_app {
                proxy_pass http://localhost:4040;
                #dynamic: proxy_set_header X-outside-url $scheme://$host:$server_port;
                proxy_set_header  X-outside-url http://localhost:80;
                proxy_set_header  X-Real-IP $remote_addr;
            }   
        } 

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        #passenger_root /usr;
        #passenger_ruby /usr/bin/ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        #include /etc/nginx/sites-enabled/*;
    }

编辑: 我试图devpi-client从我的笔记本电脑上使用,当我devpi use http://<public-ip>:80我的笔记本电脑上执行时,我得到以下信息:

using server: http://localhost/ (not logged in)
no current index: type 'devpi use -l' to discover indices
~/.pydistutils.cfg     : no config file exists
~/.pip/pip.conf        : no config file exists
~/.buildout/default.cfg: no config file exists
always-set-cfg: no
4

1 回答 1

0

您可以尝试从此修改:

        location @proxy_to_app {
            proxy_pass http://localhost:4040;
            #dynamic: proxy_set_header X-outside-url $scheme://$host:$server_port;
            proxy_set_header  X-outside-url http://localhost:80;
            proxy_set_header  X-Real-IP $remote_addr;
        }   

对此

        location @proxy_to_app {
            proxy_pass http://localhost:4040;
            proxy_set_header X-outside-url $scheme://$host;
            proxy_set_header  X-Real-IP $remote_addr;
        }   

这对我有用:-)。

于 2015-01-07T05:52:37.293 回答