nginx разрешить ssl на ec2, используя aws балансировщик нагрузки - PullRequest
0 голосов
/ 17 апреля 2020

Я установил nginx на ec2, чтобы проверить, как он будет работать с другим ec2 без nginx.

Он отлично работает на порте 80, но у меня проблемы с разрешением ssl. когда я go в свой домен использую https, он просто истекает.

Я уже установил ssl на балансировщик нагрузки aws. Как решить эту проблему?

Вот файл /etc/nginx/nginx.conf:

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;
    server_names_hash_bucket_size 128;

    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 80;
        listen 443 ssl default_server;

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

        location / {
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_pass http://unix:/home/ec2-user/src/project.sock;
        }
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...