restore composer.json, add mysqli extension
This commit is contained in:
25
custom/custom_nginx.conf
Executable file
25
custom/custom_nginx.conf
Executable file
@@ -0,0 +1,25 @@
|
||||
server {
|
||||
listen 80 default_server;
|
||||
|
||||
server_name _;
|
||||
|
||||
root "/app/public";
|
||||
index index.php;
|
||||
|
||||
client_max_body_size 512M;
|
||||
|
||||
access_log /docker.stdout;
|
||||
error_log /docker.stderr warn;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||
fastcgi_read_timeout 600;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user