This website works better with JavaScript.
Explore
Help
Sign In
Iron_Felix
/
awesome-compose
Watch
1
Star
0
Fork
You've already forked awesome-compose
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
d7f81842a4
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'd7f81842a4'
${ noResults }
awesome-compose
/
nginx-flask-mysql
/
proxy
/
conf
9 lines
126 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add nginx-flask-mysql application sample Signed-off-by: Anca Iordache <anca.iordache@docker.com>
5 years ago
server {
listen 80;
server_name localhost;
location / {
nginx-flask-mysql: add dev envs support (#272) * Add Docker Desktop Development Environments config * Change port `5000` -> `8000` for Flask to avoid conflicts on recent macOS versions * Improve DB health check (for non-dev envs case) to avoid producing a bunch of log spam Co-authored-by: Guillaume Lours <guillaume@lours.me> Signed-off-by: Milas Bowman <milas.bowman@docker.com>
2 years ago
proxy_pass http://backend:8000;
add nginx-flask-mysql application sample Signed-off-by: Anca Iordache <anca.iordache@docker.com>
5 years ago
}
}