ssl

Nginx SSL configuration not working on mobile browsers

微笑、不失礼 提交于 2020-11-29 23:59:56
问题 I've set up an Nginx server serving ssl, with an http server block redirecting to a secured server block. The certificate is issued by my domain provider (1&1). It works perfectly fine on most desktop browsers, but I get an SSL_ERROR_INTERNAL_ERROR_ALERT on Firefox on mobile, and an ERR_SSL_PROTOCOL_ERROR on Chrome mobile (Android Pie). Here is the nginx configuration: server { listen 80 deferred; listen [::]:80 deferred; server_name meetoko.com www.meetoko.com; return 301 https://meetoko.com

Trying to send email using smtp-relay.gmail.com and Nodemailer. Error ssl3_get_record:wrong version number

房东的猫 提交于 2020-11-29 23:52:39
问题 Trying to send email with G Suite smtp-relay using Nodemailer . const transporter = nodemailer.createTransport({ host: "smtp-relay.gmail.com", port: 587, secure: true, auth: { user: "username@mydomain.com", pass: "password" } }); const result = await transporter.sendMail({ from: `'"JOHN" <john@externaldomain.com>'`, to: "hello@mydomain.com", subject: "Hello", text: "Hello world!", }); This is what G Suite says about using TLS : Link1 Link2 This is what Nodemailer says: Link CONTINUE Basically

Trying to send email using smtp-relay.gmail.com and Nodemailer. Error ssl3_get_record:wrong version number

末鹿安然 提交于 2020-11-29 23:52:25
问题 Trying to send email with G Suite smtp-relay using Nodemailer . const transporter = nodemailer.createTransport({ host: "smtp-relay.gmail.com", port: 587, secure: true, auth: { user: "username@mydomain.com", pass: "password" } }); const result = await transporter.sendMail({ from: `'"JOHN" <john@externaldomain.com>'`, to: "hello@mydomain.com", subject: "Hello", text: "Hello world!", }); This is what G Suite says about using TLS : Link1 Link2 This is what Nodemailer says: Link CONTINUE Basically

Trying to send email using smtp-relay.gmail.com and Nodemailer. Error ssl3_get_record:wrong version number

我的梦境 提交于 2020-11-29 23:52:11
问题 Trying to send email with G Suite smtp-relay using Nodemailer . const transporter = nodemailer.createTransport({ host: "smtp-relay.gmail.com", port: 587, secure: true, auth: { user: "username@mydomain.com", pass: "password" } }); const result = await transporter.sendMail({ from: `'"JOHN" <john@externaldomain.com>'`, to: "hello@mydomain.com", subject: "Hello", text: "Hello world!", }); This is what G Suite says about using TLS : Link1 Link2 This is what Nodemailer says: Link CONTINUE Basically

SSL certificate on local Laradock Nginx project

試著忘記壹切 提交于 2020-11-29 09:26:48
问题 I need your help to set my Laradock (with Docker) using Nginx and SSL "fake" certificate on my local machine. I have no idea how to setup it. Could you please help me? Thanks 回答1: To enable SSL with the current version of laradock (as of Nov 2019) with a self signed certificate you must enable it in the nginx settings. Inside the folder nginx/sites remove the comments below line 6 "# For https" : # For https listen 443 ssl default_server; listen [::]:443 ssl default_server ipv6only=on; ssl

How do I set the SSL protocol needed for ActionMailer to use a TLS connection?

烈酒焚心 提交于 2020-11-29 03:31:26
问题 I am running into an issue trying to use my campus's SMTP server with my Rails 5.x app. I receive the following error: SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: unknown protocol. Here is my configuration: config.action_mailer.smtp_settings = { address: 'address.domain', port: 587, user_name: 'UNAME', password: 'PWD', authentication: :login, tls: true, enable_starttls_auto: true } To ensure I am using the latest openssl version, I have also required 'openssl' in my