From 67a937af9ed7b98fc38c8b88a5f31f27dd56c9da Mon Sep 17 00:00:00 2001 From: Andrew Shin Date: Thu, 20 Nov 2025 21:58:54 -0800 Subject: [PATCH] Create chrome.conf --- browser_conf/chrome.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..21d9e2c --- /dev/null +++ b/browser_conf/chrome.conf @@ -0,0 +1,26 @@ +[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 \ + ${BROWSER_OPTIONS} \ + "${STARTING_WEBSITE_URL}" +priority=20 +autostart=true +autorestart=true +stdout_logfile=/var/log/supervisor/chrome.log +stderr_logfile=/var/log/supervisor/chrome_error.log