We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcc81d8 + 414b83f commit 6479c3bCopy full SHA for 6479c3b
packages/docs/src/routes/docs/cookbook/node-docker-deploy/index.mdx
@@ -59,6 +59,11 @@ FROM base as final
59
60
# Use production node environment by default.
61
ENV NODE_ENV production
62
+
63
+# Pay attention to set the correct origin and port for the application.
64
+# This is used by the application to determine the origin of requests.
65
+# If you don't set this, the application will default to http://localhost:3000
66
+# If you set a wrong origin, the application may not work correctly, for example routeAction$ will not work
67
ENV ORIGIN https://example.com
68
69
# Run the application as a non-root user.
0 commit comments