Questions tagged [greenlock]

Greenlock is a suite of tools for automated https created by ppl for use on web servers and IoT devices.

Greenlock is a suite of tools for automated https created by ppl for use on web servers and IoT devices.

Some Greenlock Links:

See also .

27 questions
5
votes
2 answers

Error on Let's encrypt auto renewal (Nginx)

I am trying to set up greenlock-express to run behind nginx proxy. Here is my nginx config ... # redirect server { listen 80; listen [::]:80; server_name mydomain.com; location / { return 301…
Timo
  • 727
  • 5
  • 15
4
votes
1 answer

Using greenlock-express with web sockets

Looking for an example of how to setup HTTPS with greenlock-express in combination with a secure websocket server.
Mischawaka
  • 225
  • 2
  • 10
4
votes
2 answers

GreenLock (Let's Encrypt) using existing certbot store used by apache

I have a website that is served by Apache. I am using LetsEncrypt certificates that have been created by certbot using apache plugin. OS is Ubuntu. The site works fine. Now I am running a NodeJS based API server that uses HTTPS. In order to test I…
Moh
  • 93
  • 8
4
votes
1 answer

greenlock-express for simple nodejs webapp

I'm trying to setup HTTPS encryption for my nodejs webapp. From what I learned, greenlock-express (formely known as letsencrypt-express) is the easiest way to do it. My app is pretty simple, but I'm having a hard time to follow the usage…
Bernardo Rodrigues
  • 378
  • 1
  • 4
  • 17
3
votes
1 answer

https not working in localhost in sailsjs

I am trying to setup ssl in my local system. I am using windows machine with sails js application. here is the configuration that I did. /** * Production environment settings * (sails.config.*) * * What you see below is a quick outline of the…
baj9032
  • 2,414
  • 3
  • 22
  • 40
3
votes
2 answers

Let's encrypt with Sails.js

Has anyone been able to use let's encrypt node module (https://git.coolaj86.com/coolaj86/greenlock-express.js) with Sails.js? A little pointer would be helpful.
pewpewlasers
  • 3,025
  • 4
  • 31
  • 58
2
votes
1 answer

How to use greenlock module in node without express

I've been trying to use the greenlock.js module for Node to try and obtain ssl certificates for a domain registered in cloudflare. I have seen some examples on greenlock-express, however, I would like to use this module without needing to use…
2
votes
1 answer

nodejs greenlock-express wont create certificate

I'm trying the simple greenlock-express example and I've tried many many times but it won't work. I followed the tutorial many times. I created the greenlock.d/config.json file and it works because I see the domain on the output. When I launch I…
Guerlando OCs
  • 1,886
  • 9
  • 61
  • 150
2
votes
0 answers

How can i get the certificate files from greenlock-express for use with Nginx?

I am using the greenlock-express libary for node.js My init config looks like this: const greenlock = require("greenlock-express") .init({ packageRoot: global.__projectFolder, configDir: "./greenlock.d", …
Leon Schwanitz
  • 223
  • 1
  • 8
2
votes
1 answer

greenlock (lets'encrypt) with express and port forwarding

I am trying to set up letsencrypt (now greenlock apparently) for port forwarding with express. I had this first issue that I solved with: iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 3000 iptables -t nat -A PREROUTING -p…
Sharcoux
  • 5,546
  • 7
  • 45
  • 78
2
votes
2 answers

Let's Encrypt SSL ( sailsjs framework )

Is there any node modules for sailsjs framework to make ssl certificate using let's encrypt?
2
votes
1 answer

LetsEncrypt working for IP but not Domain (greenlock, express)

I am using the following server script to run both http, https servers and redirect all http requests to https. When I access the server both locally and remotely from IP addresses, the requests redirect to https and api works with an unsecure…
Deepak
  • 2,487
  • 3
  • 21
  • 27
1
vote
0 answers

Unable to setup secure connection using greenlock-express

I am trying to use greenlock-express to test serving an app with ssl. I am following the documentation here: So I have app.js: "use strict"; // Here's a vanilla HTTP app to start, // but feel free to replace it with Express, Koa, etc var app =…
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69
1
vote
1 answer

Repeated 'Too many certificates already issued for exact set of domains' error with GreenLock package

I have already checked this post. But even though I tried that method, it didn't work, so I open a new issue. I use AWS EC2 server and deploy with aws pipeline. So When I push to github repository, it will automatically build and deploy to…
1
vote
1 answer

How to setup wildcard domain ssl with letsencrypt greenlock?

I am pretty much new to setting up ssl server i am just exploring a package called greelock https://www.npmjs.com/package/greenlock trust me i am using real domain for this setting up ssl. after installed all packages i run this code. 'use…
Nane
  • 2,370
  • 6
  • 34
  • 74
1
2