2108 solutions found
Page 102 of 106votes
I am installing a website in a droplet (Digital Ocean). I have an issue for install NGINX with PHP properly. I did a tutorial https://www.digitalocean.com/commu...
votes
I would like to use the psql in the postgres image in order to run some queries on the database. But unfortunately when I attach to the postgres container, I g...
votes
I have setup an nginx server with php5-fpm. When I try to load the site I get a blank page with no errors. Html pages are served fine but not php. I tried tu...
votes
If I have a data.sql, how I can import database to my mysql docker container? How I can import database data. In a dockerised world this adds a layer of complex...
votes
Im fairly new to docker and so im trying to learn more about it using a laravel project, im following this tutorial: https://www.digitalocean.com/community/t...
votes
I have recently started migrating to Docker 1.9 and Docker-Compose 1.5's networking features to replace using links. So far with links there were no prob...
votes
I am trying to link 2 separate containers: - [nginx:latest](https://registry.hub.docker.com/_/nginx/) - [php:fpm](https://registry.hub.docker.com/_/php/)...
votes
I try to work out a way to create a dev environment using docker and laravel. I have the following dockerfile: FROM php:7.1.3-fpm RUN...
votes
I want to build my PHP-FPM image with `php-redis` extension based on the [official PHP Docker image](https://registry.hub.docker.com/_/php/), for example, using...
votes
I have a question about my haproxy config: #--------------------------------------------------------------------- # Global settings #----------...
votes
I have installed PHP 7 and MySQL 5.5.47 on Ubuntu 14.04 (Trusty Tahr). I have checked installed extension using: sudo apt-cache search php7-*...
votes
**Configuration** - Ubuntu Server 11.10 64 bit - Amazon AWS, Ec2, hosted on the cloud - t1.micro instance Before I write anything else, I'd like t...
votes
I am trying to setup webserver with `PHP 7 RC3` + `Nginx` on `Ubuntu 14.04` (for test purposes). I installed Ubuntu in Vagrant using `ubuntu/trusty64` and PH...
votes
Today I was updated [Ubuntu server 13.04][1] (Raring Ringtail) → [13.10][2] (Saucy Salamander). And my Apache 2 installation is broken. Here my configurat...
votes
I'd like to determine the current config that is 'loaded'. These would be all the values listed here: http://php.net/manual/en/install.fpm.configura...
votes
At the end of last week I noticed a problem on one of my medium AWS instances where Nginx always returns a HTTP 499 response if a request takes more than 60 sec...
votes
I've set up Node.js and Nginx on my server. Now I want to use it, but, before I start there are 2 questions: 1. How should they work together? How should...
votes
I was able to clone a copy of this repo over HTTPS authenticated. I've made some commits and want to push back out to the GitHub server. Using Cygwin on Win...
votes
I need to serve my app through my app server at `8080`, and my static files from a directory without touching the app server. # app server on port 80...
votes
The whole issue of setting up a development server for my Ruby on Rails application confuses me. There are WEBrick, Mongrel, Passenger, Apache, Nginx and many m...