diff --git a/Dockerfile b/Dockerfile index 72feedef46..43dab7e633 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,6 @@ RUN set -xe \ autoconf \ build-base \ openldap-dev \ - curl-dev \ && docker-php-ext-install \ calendar \ gettext \ diff --git a/docker/etc/nginx/nginx.conf b/docker/etc/nginx/nginx.conf index 1b7f1c0234..031d66828b 100644 --- a/docker/etc/nginx/nginx.conf +++ b/docker/etc/nginx/nginx.conf @@ -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; - #} - - } }