使用SSL por443在BottlePy端口80上安装NGINX

时间:2016-05-25 10:31:38

标签: python ssl nginx bottle

我在BottlePy中创建了一个Web服务。现在正在投产。

但只服务于80号港口。

我需要一个HTTPs解决方案,我读到NGINX是一个很好的解决方案。

但是可以在不更改BottlePy代码的情况下安装NGINX吗?

是否可以通过BottlePy中的端口80和NGINX中的端口443进行服务?

有人可以帮我吗?

由于

修改

我解决了这个问题:

/etc/nginx/nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

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

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
    listen       443 default_server;
        listen       [::]:443 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

    ssl    on;
    ssl_certificate    /xxx.crt;
    ssl_certificate_key    /xxx.key;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        proxy_pass http://localhost:80;
    }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
}

0 个答案:

没有答案