Panel kullanmıyorum NGİNX + PHP 8.0.3 + MariaDB kurulumunu tamamladım.
phpMyAdmin kurulumunu yaptım fakat kurulum yapmak için yardım aldığım makalede en son adımda alttaki ayar dosyasını öneriyor eğer o ayarı yaparsam tüm sayfalar http://ipadresi şeklinde girdiğimde bile her yerde 502 bad geteway hatası veriyor. Nerede yanlış yapmış olabilirim ?
server {
listen 80;
server_name xx.xxx.xx.xx; // sunucu ip adresini yazdım
root /usr/share/phpMyAdmin;
location / {
index index.php;
}
## Images and static content is treated different
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
access_log off;
expires 30d;
}
location ~ /\.ht {
deny all;
}
location ~ /(libraries|setup/frames|setup/libs) {
deny all;
return 404;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/phpMyAdmin$fastcgi_script_name;
}
}