18 lines
349 B
Plaintext
18 lines
349 B
Plaintext
### Student notes service
|
|
upstream notes-backend {
|
|
server notes:8000 fail_timeout=0;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name {{ NOTES_HOST }};
|
|
|
|
# Disables server version feedback on pages and in headers
|
|
server_tokens off;
|
|
|
|
location / {
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://notes-backend;
|
|
}
|
|
} |