NOTE: This API is outdated and should not be used. Please use v2.
This API is used by the ArcOS frontend to access the file system and store user preferences in one centralized location.
You can find detailed installation instructions for your operating system at INSTALL.md
You can proxy the ArcOS API like any other REST API as follows:
// . . .
http {
// . . .
server {
listen 80;
listen [::]:80;
server_name subdomain.example.com;
location / {
proxy_pass https://localhost:3333;
}
}
// . . .
}
This project is licensed under GPLv3.