mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
29 lines
708 B
Nginx Configuration File
29 lines
708 B
Nginx Configuration File
server {
|
|
listen 80 default;
|
|
|
|
server_name localhost;
|
|
|
|
client_max_body_size 108M;
|
|
|
|
access_log /var/log/nginx/application.access.log;
|
|
|
|
root /var/www/html/.;
|
|
|
|
index index.php;
|
|
|
|
# try to serve file directly, fallback to index.php
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args =404;
|
|
}
|
|
|
|
location ~ ^.+.php {
|
|
fastcgi_pass php-fpm:9000;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PHP_VALUE "error_log=/var/log/nginx/application_php_errors.log";
|
|
fastcgi_buffers 16 16k;
|
|
fastcgi_buffer_size 32k;
|
|
include fastcgi_params;
|
|
}
|
|
}
|