Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.28 KB

README.md

File metadata and controls

55 lines (36 loc) · 1.28 KB

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.