如何在systemD服务中配置CORS(跨源资源共享)?

如何在systemD服务中配置CORS(跨源资源共享)?

在 systemD 服务中设置 CORS(跨域资源共享)不起作用。

我有一个启用了 CORS(跨源资源共享)的节点模块,现在我的问题是如何将 CORS 配置从代码移动到 systemd 服务?

代码中的当前设置:

private allowCrossDomain(req: express.Request, res: express.Response, next: () => void) {
        res.header('Access-Control-Allow-Origin', 'http://localhost:4200');
        res.header('Access-Control-Allow-Headers', 'Authorization, Content-Type');
        res.header('Access-Control-Allow-Methods', 'GET,PUT,POST');
        res.header('Access-Control-Allow-Credentials', 'true');
        next();
    }

相反,我想在 myService.service 中添加 CORS,但以下设置不起作用:

[unit]
Description=Tool operation BE
After=network.target
[Service]
User=ubuntu
Environment=BACKEND_HOST=backend-ops-model.com
Environment=BACKEN_MODEL_PORT=80
Environment=res.header='Access-Control-Allow-Origin','http://example.com'
WorkingDirectory=/opt/backend-service/operation
ExecStart=/usr/bin/node --experimental-worker /opt/backend-service/operation/node_modules/@gst/operation-service/www.js
TimeoutStopSec=10
Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

答案1

这就是解决问题的方法。在代码中添加 CORS 选项作为环境变量:

  private allowCrossDomain(req: express.Request, res: express.Response, next: () => void) {
        res.header('Access-Control-Allow-Origin', process.env.CORS_ORIGIN_HOST || 'http://localhost:4200');
        ...

然后在 systemd 配置中添加环境指令:

[unit]
Description=Tool operation BE
After=network.target
[Service]
User=ubuntu
Environment=BACKEND_HOST=backend-ops-model.com
Environment=BACKEN_MODEL_PORT=80
Environment=CORS_ORIGIN_HOST=http://alterntive.com
WorkingDirectory=/opt/backend-service/operation
ExecStart=/usr/bin/node --experimental-worker /opt/backend-service/operation/node_modules/@gst/operation-service/www.js
TimeoutStopSec=10
Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

使用上面的配置,如果您未在 systemd 中提供环境变量,则将选择 localhost:4200 作为默认值。希望它能帮助其他人解决同样的问题。

相关内容