Move all files to old/drupal/
This commit is contained in:
parent
8203e983d5
commit
7d76bf2968
468 changed files with 0 additions and 0 deletions
19
old/drupal/tools/docker/images/nginx/configs/vhost.conf
Normal file
19
old/drupal/tools/docker/images/nginx/configs/vhost.conf
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
server {
|
||||
server_name _;
|
||||
root /app/web;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php?$query_string;
|
||||
}
|
||||
|
||||
location ~ \.php(/|$) {
|
||||
fastcgi_split_path_info ^(.+?\.php)(|/.*)$;
|
||||
try_files $fastcgi_script_name =404;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param QUERY_STRING $query_string;
|
||||
fastcgi_intercept_errors on;
|
||||
fastcgi_pass php:9000;
|
||||
}
|
||||
}
|
||||
3
old/drupal/tools/docker/images/php/configs/php.ini
Normal file
3
old/drupal/tools/docker/images/php/configs/php.ini
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
date.timezone=UTC
|
||||
expose_php=Off
|
||||
fastcgi.logging=0
|
||||
Loading…
Add table
Add a link
Reference in a new issue