Answers for "nginx proxy gunicorn"

0

nginx proxy gunicorn

server {
    listen 80;
    listen [::]:80;

    server_name 165.xx.xxx.84;

    location / {
        include proxy_params;
        proxy_pass http://127.0.0.1:8000;
    }
}
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language