mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Add installer build scripts and configuration
This commit is contained in:
parent
fb3a8582a2
commit
3420290ea9
22 changed files with 1377 additions and 7 deletions
14
installer/agent/settings.js
Normal file
14
installer/agent/settings.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
export const AGENT_PORT = 8765;
|
||||
export const PROXY_HOST = "127.0.0.1";
|
||||
export const INSTALL_DIR = "/Library/Application Support/AikidoSafety";
|
||||
export const LOG_DIR = "/var/log/aikido-safe-chain";
|
||||
export const PID_FILE = "/var/run/aikido-safe-chain.pid";
|
||||
export const CONFIG_FILE = "/Library/Application Support/AikidoSafety/proxy-config.json";
|
||||
export const LAUNCHD_PLIST = "/Library/LaunchDaemons/dev.aikido.safe-chain.plist";
|
||||
|
||||
/**
|
||||
* Proxy bypass domains
|
||||
*/
|
||||
export const BYPASS_DOMAINS = ["*.local", "169.254/16", "127.0.0.1", "localhost"];
|
||||
|
||||
export const LAUNCHD_LABEL = "dev.aikido.safe-chain";
|
||||
Loading…
Add table
Add a link
Reference in a new issue