-
-
Save riccardopirani/d6985e03ad1eb8496d6dae9249a3be67 to your computer and use it in GitHub Desktop.
Docker Nginx FPM MySql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
root /vhosts/_default_/httpdocs; | |
index index.html index.htm index.php; | |
server_name _; | |
location / { | |
# First attempt to serve request as file, then | |
# as directory, then fall back to displaying a 404. | |
try_files $uri $uri/ /index.php$is_args$args =404; | |
} | |
include /nginx/snippets/php7.0.8-fpm.conf; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
nginx: | |
image: nginx:alpine | |
links: | |
- fpm5-6-23 | |
- fpm7-0-8 | |
ports: | |
- "7000:80" | |
volumes: | |
- ./nginx/enabled:/etc/nginx/conf.d | |
- ./nginx/snippets:/nginx/snippets | |
volumes_from: | |
- app | |
fpm7-0-8: | |
image: php:7.0.8-fpm-alpine | |
volumes_from: | |
- app | |
fpm5-6-23: | |
image: php:5.6.23-fpm-alpine | |
volumes_from: | |
- app | |
db: | |
image: harianto/mysql | |
volumes: | |
- ./db/storage:/var/lib/mysql | |
app: | |
image: alpine:latest | |
command: /bin/sh | |
volumes: | |
- ./vhosts:/vhosts | |
dbadmin: | |
image: phpmyadmin/phpmyadmin | |
links: | |
- db | |
ports: | |
- "7070:80" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
disable_symlinks off; | |
listen 80; | |
server_name ~^harianto(\.localhost|\.dev)?$; | |
root /vhosts/harianto/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php7.0.8-fpm.conf; | |
} | |
server { | |
disable_symlinks off; | |
server_name ~^((?<subdomain>.*)\.)harianto(\.localhost|\.dev)?$; | |
root /vhosts/harianto/subdomains/${subdomain}/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php7.0.8-fpm.conf; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>DEFAULT DOMAIN DOCKER</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" /> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css" /> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" /> | |
<link rel='stylesheet' href="https://fonts.googleapis.com/css?family=Teko:400,700,600,500,300" > | |
<style type="text/less"> | |
/* mixins */ | |
.flex() { | |
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ | |
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ | |
display: -ms-flexbox; /* TWEENER - IE 10 */ | |
display: -webkit-flex; /* NEW - Chrome */ | |
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ | |
} | |
.flex--center() { | |
-webkit-align-items: center; | |
-webkit-box-align: center; | |
-webkit-box-direction: normal; | |
-webkit-box-pack: center; | |
-webkit-justify-content: center; | |
} | |
.flex--column() { | |
-webkit-box-orient: vertical; | |
-webkit-box-direction: normal; | |
-webkit-flex-direction: column; | |
-ms-flex-direction: column; | |
flex-direction: column; | |
} | |
.flex--row() { | |
-webkit-box-orient: horizontal; | |
-webkit-box-direction: normal; | |
-webkit-flex-direction: row; | |
-ms-flex-direction: row; | |
flex-direction: row; | |
} | |
.flex-flex(@flex) { | |
-webkit-box-flex: @flex; /* OLD - iOS 6-, Safari 3.1-6 */ | |
-moz-box-flex: @flex; /* OLD - Firefox 19- */ | |
-webkit-flex: @flex; /* Chrome */ | |
-ms-flex: @flex; /* IE 10 */ | |
flex: @flex; | |
} | |
.flex-content(@content) { | |
-webkit-justify-content: @content; | |
-ms-flex-pack: @content; | |
justify-content: @content; | |
} | |
.filter(@filter) { | |
-webkit-filter: @filter; | |
filter: @filter; | |
} | |
/* END mixins */ | |
.default { | |
min-height: 100vh; | |
} | |
.default { | |
.flex(); | |
.flex--center(); | |
} | |
@media (min-width: 768px) { | |
} | |
.default-bg { | |
background: #000 no-repeat center center url('http://lorempixel.com/1280/700/'); | |
background-size: cover; | |
color: white; | |
.filter(brightness(.6) blur(2px)); | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
/*display: none;*/ | |
z-index: -1; | |
} | |
.center { | |
.flex(); | |
.flex--column(); | |
text-align: center; | |
align-items: center; | |
-webkit-align-items: center; | |
-webkit-box-align: center; | |
-webkit-box-direction: normal; | |
-webkit-box-pack: center; | |
-webkit-justify-content: center; | |
} | |
.logo { | |
font-size: 100px; | |
} | |
body { | |
position: relative; | |
color: white; | |
background-color: black; | |
align-items: center; | |
justify-content: center; | |
} | |
h1 { | |
font-family: Teko; | |
letter-spacing: 10px; | |
text-align: center; | |
font-size: 4rem; | |
} | |
</style> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.7.1/less.min.js"></script> | |
</head> | |
<body class="default"> | |
<div class="default-bg"></div> | |
<div> | |
<div class="center"> | |
<h1>DEFAULT DOMAIN DOCKER</h1> | |
<div class="logo"> | |
<span class="fa fa-server"></span> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
disable_symlinks off; | |
listen 80; | |
server_name ~^php5(\.localhost|\.dev)?$; | |
root /vhosts/php5/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php5.6.23-fpm.conf; | |
} | |
server { | |
disable_symlinks off; | |
server_name ~^((?<subdomain>.*)\.)php5(\.localhost|\.dev)?$; | |
root /vhosts/php5/subdomains/${subdomain}/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php5.6.23-fpm.conf; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
disable_symlinks off; | |
listen 80; | |
server_name ~^php7(\.localhost|\.dev)?$; | |
root /vhosts/php7/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php7.0.8-fpm.conf; | |
} | |
server { | |
disable_symlinks off; | |
server_name ~^((?<subdomain>.*)\.)php7(\.localhost|\.dev)?$; | |
root /vhosts/php7/subdomains/${subdomain}/httpdocs; | |
autoindex on; | |
index index.html index.php; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
include /nginx/snippets/php7.0.8-fpm.conf; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment