#ERR_SSL_PROTOCOL_ERROR
23 messages · Page 1 of 1 (latest)
Location wings
location / {
proxy_pass http://ip wings:8564;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
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_redirect off;
proxy_buffering off;
proxy_request_buffering off;
}
Location panel
location /
{
proxy_pass http://ip panel:80;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
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_redirect off;
proxy_buffering off;
proxy_request_buffering off;
}
location ~ \.php$
{
proxy_pass http://ip panel:80;
proxy_http_version 1.1;
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;
proxy_read_timeout 300;
proxy_send_timeout 300;
proxy_connect_timeout 300;
}
I checked the certificate itself, it is valid and supported.
Pterodactyl has features to enable use of proxies, however we cannot provide support for proxies as it adds great complexity to the application set up. Troubleshooting complex network setups involving tunnels and proxies is extremely difficult to do without access to that network. Supporting complex network issues is outside the scope of this support.
@floral zenith Still need help?
Yes, but now I have this. That is, all the css has crumbled. At the same time, the servers are working and the page with the servers is also working. Only the admin panel is broken.
Is your panel behind cloudflare?
Also that's odd you have some JS errs. Other then the 502's.
Are you using NGINX?
Nginx Proxy Manager
Ah. I'd recommend to setup stuff in raw Nginx.
location / ?
Uhm. Inside of a site cfg.
Nginxs hould I put it on a car with a panel? Won't there be a conflict? It's just that my NPM manages the proxying of ng on all physical machines.
🤔
If it's useful, I installed it using this
https://community-scripts.github.io/ProxmoxVE/scripts?id=pterodactyl-wings
Panel bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/pterodactyl-panel.sh)"
Wings bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/pterodactyl-wings.sh)"
I'm not too sure then. I've only installed Ptero using the default install steps on the documentation.
Well, that's how proxmox works for me. and npm is used by me for other machines and it occupies ports 80 and 443.
I fixed it.
NPM should go over http
APP_URL= you need to specify a domain with https
and you need to add in .env APP_SECURE=true
Everything is working, css is working, and drop-down lists are working too.
🎉