\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /etc/nginx/sites-enabled/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //etc/nginx/sites-enabled/giallo.conf |
server {
root /var/www/html/giallo/martas;
server_name giallologistics.com www.giallologistics.com;
location / {
proxy_pass http://127.0.0.1:5222; # Flask uygulaması Gunicorn ile 5000 portunda çalışıyor
proxy_set_header Host $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;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/giallologistics.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/giallologistics.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = www.giallologistics.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = giallologistics.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name giallologistics.com www.giallologistics.com;
listen 80;
return 404; # managed by Certbot
}