@@ -12,8 +12,8 @@ There are three ways to run DejaCode:
1212
1313- :ref: `run_with_docker ` — **simplest option **, no repository checkout or build step
1414 required. Uses the pre-built Docker image published on GitHub.
15- - :ref: `enterprise_deployment ` — same pre-built image with custom nginx, domain
16- configuration , and hardware recommendations for production servers.
15+ - :ref: `enterprise_deployment ` — same pre-built image with custom nginx configuration,
16+ domain settings , and hardware recommendations for production servers.
1717- :ref: `local_development_installation ` — Docker-based setup for contributors.
1818
1919.. _run_with_docker :
@@ -44,7 +44,7 @@ Run the one-liner installer::
4444This script will:
4545
4646- Create ``~/.dejacode/ `` as the installation directory
47- - Download ``compose.yml ``, ``docker.env ``, and the database seed data
47+ - Download ``compose.yml ``, ``docker.env ``, the nginx configuration, and the database seed data
4848- Generate ``.env `` with a secure secret key
4949- Install the ``dejacode `` command in ``~/.local/bin/ ``
5050- Start all services and wait until the application is ready
@@ -145,26 +145,13 @@ Restart the stack to apply::
145145The default nginx configuration embedded in ``compose.yml `` is suitable for
146146local use. For production, replace it with your own configuration file.
147147
148- Create a ``compose.override.yml `` in your installation directory
149- (``~/.dejacode/ ``) with the following content:
150-
151- .. code-block :: yaml
152-
153- services :
154- nginx :
155- configs : []
156- volumes :
157- - ./nginx.conf:/etc/nginx/conf.d/default.conf
158-
159- Then create ``~/.dejacode/nginx.conf `` with your production nginx configuration
160- (TLS termination, custom headers, upstream settings, etc.) and restart::
148+ The installer downloads a default nginx configuration to
149+ ``~/.dejacode/etc/nginx/conf.d/default.conf ``. Replace it with your own
150+ configuration (TLS termination, custom headers, upstream settings, etc.)
151+ and restart::
161152
162153 dejacode down && dejacode up -d
163154
164- .. note ::
165- Docker Compose automatically picks up ``compose.override.yml `` when present
166- in the same directory as ``compose.yml ``.
167-
1681554. AboutCode integrations
169156--------------------------
170157
0 commit comments