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

skies-io/GitHub-Charon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Charon - Pull Request Validation Tool

Installation

Access

You can access this website through http://your-domain.tld:5000.

If you want to use port 80, run your image with this command: docker run --name charon -p 80:5000 -d charon.

Otherwise, if you want use Nginx or Apache, here is their configurations:

Nginx

upstream charon {
    server 127.0.0.1:5000;
}
server {
    listen 80;
    server_name your-domain.tld;
    location / {
        proxy_pass http://charon;
    }
}

Apache

Beforehand, you must enable modules proxy and proxy_http.

<VirtualHost your-domain.tld:80>
        ServerName your-domain.tld
        ProxyPass / http://localhost:5000/
        ProxyPassReverse / http://localhost:5000/
        ProxyPreserveHost On
</VirtualHost>

About

GitHub Charon - Pull Request Validation Tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published