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.
1 parent 9c23851 commit 81283aaCopy full SHA for 81283aa
backend/src/app.ts
@@ -114,6 +114,9 @@ class App {
114
}
115
116
private setupExpress() {
117
+ // Trust proxy when running behind load balancers/reverse proxies
118
+ this.e.set('trust proxy', true);
119
+
120
this.e.use(cors());
121
this.e.use((req, res, next) => {
122
if (req.path === '/api/github/webhooks') {
0 commit comments