Make nginx more clear that changing the port is 'dangerous' (#4880)

* Make nginx more clear that changing the port is 'dangerous'
See https://github.com/inventree/InvenTree/issues/4859#issuecomment-1560025566

* also add note to prod docker-compose
This commit is contained in:
Matthias Mair 2023-05-24 01:05:16 +02:00 committed by GitHub
parent 91d79dc3ed
commit aa2f5e330a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -73,6 +73,10 @@ services:
container_name: inventree-server container_name: inventree-server
# If you wish to specify a particular InvenTree version, do so here # If you wish to specify a particular InvenTree version, do so here
image: inventree/inventree:${INVENTREE_TAG:-stable} image: inventree/inventree:${INVENTREE_TAG:-stable}
# Only change this port if you understand the stack.
# If you change this you have to change:
# - the proxy settings (on two lines)
# - only change the exposed port - eg `1338:8000` if you want to expose the server on port 1338
expose: expose:
- 8000 - 8000
depends_on: depends_on:

View File

@ -24,8 +24,7 @@ server {
proxy_buffering off; proxy_buffering off;
proxy_request_buffering off; proxy_request_buffering off;
# Change 'inventree-server' to the name of the inventree server container, # Do not touch this unless you have a specific reason - this and the docker-compose need to match
# and '8000' to the INVENTREE_WEB_PORT (if not default)
proxy_pass http://inventree-server:8000; proxy_pass http://inventree-server:8000;
} }