Answers for "nginx proxy with gui"

0

pass proxy nginx

location ~ .php {
    proxy_pass http://127.0.0.1:8000;
}
Posted by: Guest on October-30-2020
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