Plesk Nodejs 上的环境变量
I have hosted my node api on Plesk. But i cant find anywhere to add my env variables so that my api could work.
As you can see in the below image. custom variables option is below Application Startup File
but in my case its not there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(仅限 Linux 版 Plesk)自定义环境变量 - 您可以在此处查看为应用程序设置的自定义环境变量列表(如果有)。单击“[指定]”为您的应用程序添加或删除环境变量:
右边的。
字段并输入新的变量名称或值。
如果您在 Linux 环境上运行 Plesk,则上述选项可用,否则您需要按照以下步骤操作。
您需要在应用程序文件夹外部使用
.env
并创建自定义脚本,并传递这些.env
并在运行节点脚本时将它们作为参数发送。 检查此链接是否有帮助。(Plesk for Linux only) Custom environment variables - Here you can see a list of custom environment variables you have set for your application (if any). Click “[specify]” to add or remove environment variables for your application:
the right.
field and typing in the new variable name or value.
If you running Plesk on Linux env then the above option is available else you need to follow the below steps.
You need to use
.env
outside the application folder and create a custom script and pass these.env
and send them as arguments when you run the node script. Check this link if it helps.