#"file not found" error
1 messages · Page 1 of 1 (latest)
That's be a webserver misconfiguration
Go back to the webserver config part of the docs
The problem for me was that Pterodactyl's proxy scripts assume the proxy is on the same computer(I think). For nginx the following worked
location / {
proxy_pass http://<PTERODACTYL_SERVER_IP_OR_DOMAIN>/; # Replace with actual IP or domain of Pterodactyl server
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;
}