Skip to content

A rewrite of oraxen/polymath in typescript.

Notifications You must be signed in to change notification settings

LordFetzi/Polymath

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Polymath

A rewrite of oraxen/polymath in typescript.

How to use

Using Pterodactyl

  • Download and Install Eggs to your Pterodactyl Panel.

  • Create a new server using port 8181 since 8080 used for Pterodactyl Panel.

  • Setup Nginx as below:

    server {
        listen 80;
        server_name atlas.domain.com;
    
        location / {
            proxy_pass http://0.0.0.0:8181;
            proxy_set_header X-Real-IP $remote_addr;
            client_max_body_size 16M;
        }
    }
    
    server {
        listen 443 ssl;
        server_name atlas.domain.com;
    
        ssl_certificate /etc/letsencrypt/live/atlas.domain.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/atlas.domain.com/privkey.pem;
    
        location / {
            proxy_pass http://0.0.0.0:8181;
            proxy_set_header X-Real-IP $remote_addr;
            client_max_body_size 16M;
        }
    }
    

    Remember to Creating SSL Certificates.

Using Public Atlas

Edit file Oraxen/settings.yml

Pack:
  upload:
    enabled: true
    type: polymath
    polymath:
      server: atlas.arknesia.com
      secret: ChangeThisUsingYourUniqueId

Discord Support

About

A rewrite of oraxen/polymath in typescript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%