📄 nginx_local
Tamaño: 935 Bytes
Modificado: 2026-01-31 00:38:49
Permisos: 100664
Ruta:
/home/apps/ciermmi/config/nginx_localContenido del Archivo
server {
listen 89;
server_name _;
root /mnt/c/Users/Govani/rails/ciermmi2023/php;
index index.htm index.html;
location ^~ /elFinder{
location ~* \.php$ {
root /mnt/c/Users/Govani/rails/ciermmi2023/php;
index index.htm index.html;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
location ~ \.php$ {
root /mnt/c/Users/Govani/rails/ciermmi2023/php;
index index.htm index.html;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}