CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/compute/constants.ts
Views: 687
1
// Make various components use consistent file for configuring the proxy.
2
// WARNING: these two paths are also hard coded at
3
//
4
// https://github.com/sagemathinc/cocalc-compute-docker/blob/main/src/cocalc/supervisor/conf.d/proxy.conf
5
//
6
// so you can't just change them here and expect things to not break!
7
8
export const PROXY_AUTH_TOKEN_FILE = "/cocalc/conf/auth_token";
9
export const PROXY_CONFIG = "/cocalc/conf/proxy.json";
10
11