41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
root /var/www/html;
|
|
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name _;
|
|
|
|
location /phpmyadmin {
|
|
root /usr/share/;
|
|
index index.php index.html index.htm;
|
|
location ~ ^/phpmyadmin/(.+.php)$ {
|
|
try_files $uri =404;
|
|
root /usr/share/;
|
|
fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
include /etc/nginx/fastcgi_params;
|
|
fastcgi_param PATH_INFO $fastcgi_script_name;
|
|
fastcgi_buffer_size 128k;
|
|
fastcgi_buffers 256 4k;
|
|
fastcgi_busy_buffers_size 256k;
|
|
fastcgi_temp_file_write_size 256k;
|
|
fastcgi_intercept_errors on;
|
|
}
|
|
location ~* ^/phpmyadmin/(.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
|
|
root /usr/share/;
|
|
}
|
|
}
|
|
|
|
location /phpMyAdmin {
|
|
rewrite ^/* /phpmyadmin last;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|