Skip to content
Snippets Groups Projects
Commit 41a23a16 authored by Tim Neumann's avatar Tim Neumann Committed by Nadja Geisler
Browse files

Fix some typos in docs

parent e47ccaeb
No related branches found
No related tags found
No related merge requests found
......@@ -157,11 +157,11 @@ services:
restart: always
volumes:
- /path/to/nginx.conf:/etc/nginx/nginx.conf:ro
- static-files:/var/www/ak-static
- static-files:/var/www/akplanning-static
ports:
- "8080:80"
depends_on:
- ak-server
- akplanning-server
networks:
- akplanning
```
......@@ -192,12 +192,12 @@ http {
server_name localhost:8080;
location /static/ {
alias /var/www/ak-static/;
alias /var/www/akplanning-static/;
}
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass uwsgi://ak-server:3035;
uwsgi_pass uwsgi://akplanning-server:3035;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment