Explore Docker wordpress nginx on Docker Windows

The purpose here: quick install and run all in one docker with nginx+php+mysql+wordpress eugeneware explore docker inside portable docker for windows Check here if you want to know how to make portable docker toolbox for windows. $ dockerstart installation docker images $ docker pull eugeneware/docker-wordpress-nginx Using default tag: latest latest: …

Portable nginx+php+mysql stack on windows msys

download nginx+php+mysql zip package and unzip without installation nginx-1.11.5.zip beta version on windows php-7.0.12-nts-Win32-VC14-x64.zip with php-cgi tool mysql-5.7.16-winx64.zip community server config nginx nginx.conf change doc root from html to www, create www folder under nginx place all app site in conf/conf.d folder and include them nginx.conf sample app site sample …

Install wordpress on opensuse

Assumed apache+php+mysql is ready on opensuse, otherwise check out here. WordPress is just pure php+mysql application, it’s easy to install on opensuse. 1) download wordpress 3.0 download from here. # mv //wordpress-3.0.zip /srv/www/htdocs # cd /srv/www/htdocs # unzip wordpress-3.0.zip # cd wordpress-3.0 # cp wp-config-sample.php wp-config.php fill up the database …

opensuse 11.3 apache+php+mysql setup

This is quick guide to setup web dev environment on opensuse 11.3. 1) install apache, php and mysql packages through Yast2 apache: apache2, apache2-mod_php5 php: php5, php5-mysql mysql: mysql-community-server, mysql-community-server-client 2) setup apache # rcapache2 status Checking for httpd2:                                          unused means apache installed but not started yet, # cd /srv/www/htdocs …