@ששא כתב בבעיה בהתקנת phpmyadmin - אני מקבל שגיאת 403:
@A0533057932 כתב בבעיה בהתקנת phpmyadmin - אני מקבל שגיאת 403:
אבל האם עברת על זה?
כן
הרי לא עברת
Prerequisites
In order to complete this guide, you will need:
A server running Ubuntu 20.04. This server should have a non-root user with administrative privileges and a firewall configured with ufw. To set this up, follow our initial server setup guide for Ubuntu 20.04.
A LEMP stack (Linux, Nginx, MySQL, and PHP) installed on your Ubuntu 20.04 server. To install and configure these components, follow our guide on How To Install Linux, Nginx, MySQL, PHP (LEMP stack) on Ubuntu 20.04.
זה מה שהיה אמור להופיע לך בNGINX עם פעלת לפי ההוראות
server {
listen 80;
server_name your_domain www.your_domain;
root /var/www/your_domain;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}