You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I want to deploy EcoSonar to production, but there are security issues present.
Describe the solution you'd like
In the file: EcoSonar-API/services/lighthouse/lighthouse.js, we can see:
exportdefaultasyncfunctionlighthouseAnalysis(urlList,projectName,username,password){constbrowserArgs=['--no-sandbox',// can't run inside docker without'--disable-setuid-sandbox',// but security issues'--ignore-certificate-errors','--window-size=1920,1080','--start-maximized','--remote-debugging-port=36951'];}
I don't see how to deploy this in production with these issues. We need a feature that allows using it securely in production.
Describe alternatives you've considered
Perhaps a feature flag or an environment variable to enable sandboxing in production.
Additional context
I don't have any additional context.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to deploy EcoSonar to production, but there are security issues present.
Describe the solution you'd like
In the file:
EcoSonar-API/services/lighthouse/lighthouse.js
, we can see:I don't see how to deploy this in production with these issues. We need a feature that allows using it securely in production.
Describe alternatives you've considered
Perhaps a feature flag or an environment variable to enable sandboxing in production.
Additional context
I don't have any additional context.
The text was updated successfully, but these errors were encountered: