Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

IzK-ArcOS/ArcOS-API-v1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArcOS Backend API

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.

Running the API

You can find detailed installation instructions for your operating system at INSTALL.md

Proxying with NGINX

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 http://localhost:3333;
    }
  }

  // . . .
}

License

This project is licensed under GPLv3.