Git Product home page Git Product logo

nuclewallet's Introduction

Nucle Wallet

Rua

Nucle wallet is the first decentralized SPV wallet for Chia blockchain. Your first step to the Chia Defi world!

Please check out the wiki for more on this project.

Releases

Example Nginx config

upstream node_server{
        server YOUR IP:8555; # your full node rpc.If you need to extend the node, you can add serve here.
}
server {
        listen 443;
        server_name your-domain-name;

        root /var/www/web; # web root
        index index.html index.htm;

        access_log /var/log/nginx/wallet.log main;
        error_log /var/log/nginx/wallet.error.log;
        ssl on;
        ssl_certificate  /etc/nginx/cert/wallet/xxx.pem; # your SSL
        ssl_certificate_key /etc/nginx/cert/wallet/xxx.key; # your SSL
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1.2;
        ssl_prefer_server_ciphers on;

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

        location ~ .*\.(html)$ { 
                add_header Cache-Control no-cache;
        }

        location /api/ {
                proxy_pass      http://YOUR IP:7021/api/;
        }
}
server {
        listen 8082;
        server_name localhost;
                location ^~/node/ {
                proxy_pass      https://node_server/;
                proxy_ssl_certificate   /root/data/mainnet/config/ssl/full_node/private_full_node.pem; # your full node SSL:~/./mainnet/config/ssl/full_node/
                proxy_ssl_certificate_key   /root/data//mainnet/config/ssl/full_node/private_full_node.key; # your full node SSL:~/./mainnet/config/ssl/full_node/
                proxy_ssl_session_reuse on;
                proxy_ssl_protocols TLSv1.2;
                proxy_ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
        }
}

nuclewallet's People

Contributors

paspy avatar yuiec avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.