fix(core): update

This commit is contained in:
2019-06-07 13:13:11 +02:00
commit a0a6d57c9f
6 changed files with 173 additions and 0 deletions

21
default.conf Normal file
View File

@@ -0,0 +1,21 @@
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8090/;
}
}
server {
listen 443 ssl;
server_name localhost;
ssl_certificate /home/cardano/cardano-sl/state-wallet-mainnet/tls/server/server.crt;
ssl_certificate_key /home/cardano/cardano-sl/state-wallet-mainnet/tls/server/server.key;
#ssl_client_certificate /home/cardano/cardano-sl/state-wallet-mainnet/tls/server/ca.crt;
location / {
proxy_pass http://localhost:8090/;
}
}