first working instance without adminer

This commit is contained in:
Robert Nasarek 2022-10-05 11:36:51 +02:00
commit 717b623b71
6 changed files with 190 additions and 0 deletions

46
nginx-conf/nginx.conf Normal file
View file

@ -0,0 +1,46 @@
server {
listen 80;
listen [::]:80;
server_name dlza.gnm.de www.dlza.gnm.de;
index index.php index.html index.htm;
root /opt/drupal/web/;
location ~ /.well-known/acme-challenge {
allow all;
root /opt/drupal/web/;
}
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
rewrite ^/core/authorize.php/core/authorize.php(.*)$ /core/authorize.php$1;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass drupal:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location ~ /\.ht {
deny all;
}
location = /favicon.ico {
log_not_found off; access_log off;
}
location = /robots.txt {
log_not_found off; access_log off; allow all;
}
location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
expires max;
log_not_found off;
}
}