Skip to content

orangecoloured/secu-web-app

 
 

Repository files navigation

SЁCU WEB-APP

Gitter chat

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.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.9%
  • HTML 7.1%
  • CSS 4.0%