Skip to content

Commit

Permalink
Remove old docker and nginx solr configs
Browse files Browse the repository at this point in the history
  • Loading branch information
anvit committed Aug 29, 2024
1 parent 4f99278 commit d1ceb6c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 31 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ RUN set -xe \
autoconf \
build-base \
openldap-dev \
curl-dev \
&& docker-php-ext-install \
calendar \
gettext \
Expand Down
30 changes: 0 additions & 30 deletions docker/etc/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -66,34 +66,4 @@ http {
}

}

server {
listen 81;
root /solr;
server_name _solr;

index index.php index.html index.htm;

location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass atom;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}

#location / {
## First attempt to serve request as file, then
## as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
#}

#location ~ \.php$ {
#include snippets/fastcgi-php.conf;
#fastcgi_pass unix:/run/php7.4-fpm.atom.sock;
#}

}
}

0 comments on commit d1ceb6c

Please sign in to comment.