Fix sandboxing
- Allow setting the sandbox in the config file, and document it - Enable the sandbox in the default Docker config - Don't assign to a const when trying to set the sandbox flag
This commit is contained in:
parent
8d4bb3d777
commit
800f51958d
|
@ -6,6 +6,9 @@ If `type` is `tcp`, `port` and `host` are the host/port where to listen.
|
||||||
### Executable path
|
### Executable path
|
||||||
The `executable_path` specifies the path to the Chromium binary for Puppeteer to use. Leaving this setting blank will use the x86_64 Chromium installation bundled with Puppeteer. For other architectures, it is necessary to install a compatible version of Chromium (ideally via your distribution's package manager), and to set `executable_path` to the path of its binary (typically `/usr/bin/chromium`).
|
The `executable_path` specifies the path to the Chromium binary for Puppeteer to use. Leaving this setting blank will use the x86_64 Chromium installation bundled with Puppeteer. For other architectures, it is necessary to install a compatible version of Chromium (ideally via your distribution's package manager), and to set `executable_path` to the path of its binary (typically `/usr/bin/chromium`).
|
||||||
|
|
||||||
|
### Sandbox
|
||||||
|
Whether or not to pass the `--no-sandbox` flag to Chromium. May be required when running Chromium in a container.
|
||||||
|
|
||||||
### Profile directory
|
### Profile directory
|
||||||
The `profile_dir` specifies which directory to put Chromium user data directories.
|
The `profile_dir` specifies which directory to put Chromium user data directories.
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"path": "/data/puppet.sock"
|
"path": "/data/puppet.sock"
|
||||||
},
|
},
|
||||||
"executable_path": "/usr/lib/chromium/chrome",
|
"executable_path": "/usr/lib/chromium/chrome",
|
||||||
|
"no_sandbox": true,
|
||||||
"profile_dir": "./profiles",
|
"profile_dir": "./profiles",
|
||||||
"extension_dir": "/data/extension_files",
|
"extension_dir": "/data/extension_files",
|
||||||
"cycle_delay": 5000,
|
"cycle_delay": 5000,
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"path": "/var/run/matrix-puppeteer-line/puppet.sock"
|
"path": "/var/run/matrix-puppeteer-line/puppet.sock"
|
||||||
},
|
},
|
||||||
"executable_path": "",
|
"executable_path": "",
|
||||||
|
"no_sandbox": false,
|
||||||
"profile_dir": "./profiles",
|
"profile_dir": "./profiles",
|
||||||
"extension_dir": "./extension_files",
|
"extension_dir": "./extension_files",
|
||||||
"cycle_delay": 5000,
|
"cycle_delay": 5000,
|
||||||
|
|
|
@ -35,7 +35,7 @@ const configPath = args["--config"] || "config.json"
|
||||||
console.log("[Main] Reading config from", configPath)
|
console.log("[Main] Reading config from", configPath)
|
||||||
const config = JSON.parse(fs.readFileSync(configPath).toString())
|
const config = JSON.parse(fs.readFileSync(configPath).toString())
|
||||||
MessagesPuppeteer.executablePath = args["--browser"] || config.executable_path || MessagesPuppeteer.executablePath
|
MessagesPuppeteer.executablePath = args["--browser"] || config.executable_path || MessagesPuppeteer.executablePath
|
||||||
MessagesPuppeteer.noSandbox = args["--no-sandbox"] || MessagesPuppeteer.noSandbox
|
MessagesPuppeteer.noSandbox = args["--no-sandbox"] || config.no_sandbox || MessagesPuppeteer.noSandbox
|
||||||
MessagesPuppeteer.profileDir = config.profile_dir || MessagesPuppeteer.profileDir
|
MessagesPuppeteer.profileDir = config.profile_dir || MessagesPuppeteer.profileDir
|
||||||
MessagesPuppeteer.devtools = config.devtools || false
|
MessagesPuppeteer.devtools = config.devtools || false
|
||||||
MessagesPuppeteer.extensionDir = config.extension_dir || MessagesPuppeteer.extensionDir
|
MessagesPuppeteer.extensionDir = config.extension_dir || MessagesPuppeteer.extensionDir
|
||||||
|
|
|
@ -82,7 +82,7 @@ export default class MessagesPuppeteer {
|
||||||
`--window-size=${MessagesPuppeteer.viewport.width},${MessagesPuppeteer.viewport.height+120}`,
|
`--window-size=${MessagesPuppeteer.viewport.width},${MessagesPuppeteer.viewport.height+120}`,
|
||||||
]
|
]
|
||||||
if (MessagesPuppeteer.noSandbox) {
|
if (MessagesPuppeteer.noSandbox) {
|
||||||
args = args.concat(`--no-sandbox`)
|
args.push(`--no-sandbox`)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.browser = await puppeteer.launch({
|
this.browser = await puppeteer.launch({
|
||||||
|
|
Loading…
Reference in New Issue