├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── README_RU.md ├── mariadb └── README.md ├── nginx ├── conf │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── scgi_params │ ├── uwsgi_params │ ├── vhosts │ │ └── example._conf │ └── win-utf ├── html │ ├── 50x.html │ ├── index.php │ └── info.php ├── logs │ └── .gitignore ├── nginx.exe └── temp │ ├── client_body_temp │ └── .gitignore │ ├── fastcgi_temp │ └── .gitignore │ ├── proxy_temp │ └── .gitignore │ ├── scgi_temp │ └── .gitignore │ └── uwsgi_temp │ └── .gitignore ├── php-cgi-spawner.exe ├── php54 └── README.md ├── php55 └── README.md ├── php7 └── README.md ├── restart_php.bat ├── start_all.bat └── stop_all.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/README.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/README_RU.md -------------------------------------------------------------------------------- /mariadb/README.md: -------------------------------------------------------------------------------- 1 | Put MariaDB here -------------------------------------------------------------------------------- /nginx/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/fastcgi.conf -------------------------------------------------------------------------------- /nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /nginx/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/koi-utf -------------------------------------------------------------------------------- /nginx/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/koi-win -------------------------------------------------------------------------------- /nginx/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/mime.types -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /nginx/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/scgi_params -------------------------------------------------------------------------------- /nginx/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/uwsgi_params -------------------------------------------------------------------------------- /nginx/conf/vhosts/example._conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/vhosts/example._conf -------------------------------------------------------------------------------- /nginx/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/conf/win-utf -------------------------------------------------------------------------------- /nginx/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/html/50x.html -------------------------------------------------------------------------------- /nginx/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdark/wnmp-dev/HEAD/nginx/html/index.php -------------------------------------------------------------------------------- /nginx/html/info.php: -------------------------------------------------------------------------------- 1 |