Rework on Docker image
This commit is contained in:
parent
518de596bb
commit
b46854e479
6 changed files with 56 additions and 20 deletions
23
nginx_note.conf_docker
Normal file
23
nginx_note.conf_docker
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
upstream note {
|
||||
server 127.0.0.1:8000;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name note;
|
||||
|
||||
location / {
|
||||
proxy_pass http://note;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $host;
|
||||
proxy_redirect off;
|
||||
}
|
||||
|
||||
location /static {
|
||||
alias /code/static/;
|
||||
}
|
||||
|
||||
location /media {
|
||||
alias /code/media/;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue