With adminer:fastcgi running
This commit is contained in:
parent
cfb3bbdf60
commit
0757f47966
2 changed files with 57 additions and 30 deletions
|
|
@ -2,7 +2,25 @@ server {
|
|||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
server_name dlza.gnm.de www.dlza.gnm.de;
|
||||
server_name adminer.local;
|
||||
|
||||
index index.php;
|
||||
|
||||
location ~ ^/(index.php)?$ {
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME /var/www/html/index.php;
|
||||
fastcgi_param DOCUMENT_ROOT /var/www/html/;
|
||||
fastcgi_pass adminer:9000;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
server_name devel.local;
|
||||
|
||||
index index.php index.html index.htm;
|
||||
|
||||
|
|
@ -44,3 +62,35 @@ server {
|
|||
log_not_found off;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
server_name graphdb.local;
|
||||
|
||||
location / {
|
||||
proxy_pass http://graphdb:7200;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
server_name solr.local;
|
||||
|
||||
location / {
|
||||
proxy_pass http://solr:8983;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue