Please fill out the information bellow and remove from the line up
If you just submit a bug with no info I will close out your bug.
Panel Version: (version number) 0.7.14
Daemon Version: (version number) 0.6.12
Service: (minecraft/factorio/etc) Nests & eggs
Modified: (yes/no) (did you add or change things, this includes startup configs/install scripts/variables) Yes, I changed my daemon folder to somewhere in my /home/...
Expected Behavior:
Uploading an egg works and adds the egg to the available eggs
Actual Behavior:
Returns a 500 error with no further explaination. Could not find anything in the logs either, might be looking in the wrong place.
Steps to Reproduce: (Step by step what to do to cause the issue)
Use NGINX to access your panel
Have the following config:
server
{
listen 80;
listen 443 ssl http2;
server_name [DOMAIN] [DOMAIN];
index index.php;
root /home/server/Documents/HDDs/Websites/pterodactyl/public;
#SSL-START SSL related configuration, do NOT delete or modify the next line of commented-out 404 rules
#error_page 404/404.html;
#HTTP_TO_HTTPS_START
if ($server_port !~ 443){
rewrite ^(/.*)$ https://$host$1 permanent;
}
#HTTP_TO_HTTPS_END
ssl_certificate /www/server/panel/vhost/cert/[DOMAIN]/fullchain.pem;
ssl_certificate_key /www/server/panel/vhost/cert/[DOMAIN]/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
error_page 497 https://$host$request_uri;
#SSL-END
#ERROR-PAGE-START Error page configuration, allowed to be commented, deleted or modified
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#PHP-INFO-START PHP reference configuration, allowed to be commented, deleted or modified
include enable-php-72.conf;
#PHP-INFO-END
#REWRITE-START URL rewrite rule reference, any modification will invalidate the rewrite rules set by the panel
include /www/server/panel/vhost/rewrite/servers.kevinswebsite.nl.conf;
#REWRITE-END
# See https://hstspreload.org/ before uncommenting the line below.
#
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_PROXY "";
fastcgi_intercept_errors off;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 128k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
include /etc/nginx/fastcgi_params;
}
location ~ /\.ht {
deny all;
}
access_log /www/wwwlogs/[DOMAIN].log;
error_log /www/wwwlogs/[DOMAIN].error.log;
}
Install your daemon to a custom location (not sure if this is related?)
Please fill out the information bellow and remove from the line up If you just submit a bug with no info I will close out your bug.
Panel Version: (version number) 0.7.14 Daemon Version: (version number) 0.6.12 Service: (minecraft/factorio/etc) Nests & eggs Modified: (yes/no) (did you add or change things, this includes startup configs/install scripts/variables) Yes, I changed my daemon folder to somewhere in my /home/...
Expected Behavior: Uploading an egg works and adds the egg to the available eggs
Actual Behavior: Returns a 500 error with no further explaination. Could not find anything in the logs either, might be looking in the wrong place.
Steps to Reproduce: (Step by step what to do to cause the issue)
Have the following config:
Did I do something wrong?