skip to Main Content

No php-fpm error logs from docker container – Apache

Using apache + php-fpm containers in docker-compose, I can't get the php-fpm container to display any errors. docker-compose.yml version: '3' services: php: build: context: ./php ports: - 9000:9000 volumes: - ./code:/code - ./php/www.conf:/usr/local/etc/php-fpm.d/www.conf environment: ENVIRONMENT: local web: image: httpd:2.4 depends_on:…

VIEW QUESTION

How to scale out apache atlas

There is no info provided in atlas document on how to scale it. Apache atlas is connected to cassandra or hbase in the backend which can scale out ,but I dont know how apache atlas engine ( rest web-service and…

VIEW QUESTION

Apache and Content-Range

I am trying to implement support for Content-Range in PHP-generated files. When a browser sends Range request my script gives correct bytes and it works well. But while testing how Content-Range looks when downloading a PDF from Apache server I…

VIEW QUESTION
Back To Top
Search