skip to Main Content

Convert Apache configuration to Nginx

I'm trying to improve the installation documentation of some open source software, but I've hit a snag with the web server configuration. I have this software working well with Apache, but I need to use Nginx in the documentation for…

VIEW QUESTION

Docker: PhpMyAdmin has an upload limit of 2048KiB

i have a docker-compose.yml that looks like this: webserver: build: ./_docker/php ports: - 80:80 links: - mysql volumes_from: - app mysql: image: mysql:5.7 environment: MYSQL_DATABASE: "${DB_NAME}" MYSQL_USER: "${DB_USER}" MYSQL_ROOT_PASSWORD: "${DB_ROOT_PW}" MYSQL_PASSWORD: "${DB_PW}" volumes: - ./_docker/data/db:/docker-entrypoint-initdb.d volumes_from: - data data: image:…

VIEW QUESTION
Back To Top
Search