From 77b22244dffc9c300789a1e7975f8552cd820bd8 Mon Sep 17 00:00:00 2001 From: Andrew Shin Date: Fri, 21 Nov 2025 09:09:53 -0800 Subject: [PATCH] Create chrome.conf --- browser_conf/chrome.conf | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 browser_conf/chrome.conf diff --git a/browser_conf/chrome.conf b/browser_conf/chrome.conf new file mode 100644 index 0000000..ed9c735 --- /dev/null +++ b/browser_conf/chrome.conf @@ -0,0 +1,27 @@ +[program:chrome] +command=/usr/bin/google-chrome-stable \ + --no-sandbox \ + --disable-dev-shm-usage \ + --disable-gpu \ + --disable-features=UseOzonePlatform \ + --start-maximized \ + --no-first-run \ + --no-default-browser-check \ + --disable-infobars \ + --disable-extensions \ + --disable-translate \ + --disable-sync \ + --password-store=basic \ + --autoplay-policy=no-user-gesture-required \ + --disable-logging \ + --disable-breakpad \ + --disable-component-update \ + --remote-debugging-port=0 \ + %(ENV_BROWSER_OPTIONS)s \ + %(ENV_STARTING_WEBSITE_URL)s +priority=20 +autostart=true +autorestart=true +stdout_logfile=/var/log/supervisor/chrome.log +stderr_logfile=/var/log/supervisor/chrome_error.log +environment=BROWSER_OPTIONS="--no-sandbox --disable-dev-shm-usage",STARTING_WEBSITE_URL="https://www.google.com"