Skip to content
/ web-app Public

SЁCU is a web application design to create, store and provide SЁCU API self-destructing data payloads.

License

Notifications You must be signed in to change notification settings

secusu/web-app

Repository files navigation

SЁCU WEB-APP

Discord

SЁCU is a web application design to create, store and provide SËCU API self-destructing data payloads.

Server Configuration

NGINX

server {
    listen      127.0.0.1:80;
    server_name secu.int;
    
    rewrite ^/(.*)/$ /$1 permanent;

    root `{/path/to/secu/web-app}`/public;
    index index.html;

    location ~* \.(jpg|jpeg|gif|png|ico|css|pdf|ppt|txt|bmp|rtf|js)$ {
        expires 7d;
    }

    location / {
        try_files $uri $uri/ /index.html?$query_string;
    }
}

Installation

npm install

Rebuild web application

You can build public directory using Gulp.

gulp

Contributing

Please refer to CONTRIBUTING.md for information on how to contribute to SËCU and its related projects.

License

The SËCU web application is an open-sourced software licensed under the MIT.