Skip to content

hushfile/hushfile-flask-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hushfile-flask-server

Flask server compatible with the hushfile 1.0 api

Installation

To run (locally or on a server) nginx is needed for rewriting, the following config can be used:

server {
    listen 8000 default_server;
    server_name _;
    root /path/to/hushfile-web/checkout;
    client_max_body_size            1000M;
    location / {
        index                   hushfile.html;
        try_files               $uri /hushfile.html =404;
    }
    location /api/ {
        # hushfile-flask-server port
        proxy_pass http://127.0.0.1:8080;
    }
}

About

Flask server compatible with the hushfile 1.0 api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages