All Questions
Tagged with ssl-certificate ruby-on-rails
69 questions
0
votes
0
answers
203
views
How do I get my M1 Macbook pro to trust Netskope cert?
My company recently installed Netskope on our machines. Now any HTTP request I make from apps I am running locally fail with the below error whether Netskope is enabled or disabled.
SSL_connect ...
0
votes
1
answer
341
views
Serving https from local through ngrok with domain
Apologies for my lack of clear understanding about SSL.
I would like my rails app to be accessible from the outside world with ngrok via https. In order to achieve this, I am using ngrok (enterprise) ...
1
vote
1
answer
54
views
How does a Ruby gem becomes invalid?
My Ruby on Rails dev server has been running for a while on Windows 2016 server. But I had to restart it yesterday.
Then it raised the following error:
The git source https://github.com/fchampreux/...
0
votes
0
answers
82
views
What causes SSL certificate verification to be required?
I recently started receiving this error when sending requests to a third-party API.
def api_call
uri = URI.parse(url)
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
...
0
votes
1
answer
296
views
How to get rpush to recognize a new certificate
This concerns the rpush gem, a push notification service that I am using for Apple push notifications. I'm using the Rpush::Apns2 mode.
I'm having a mysterious problem getting rpush to see a new ...
6
votes
2
answers
14k
views
Ruby on rails : problem of verifiying the SSL certificate while installing bundle
I'm new with ruby on rails and while creating my first project with this command rails new n_project, i got this error
run bundle install
Fetching source index from https://rubygems.org/
Retrying ...
0
votes
2
answers
417
views
ERR_CERT_COMMON_NAME_INVALID for Rails app on was elastic beanstalk
I have a webapp deployed to aws elastic beanstalk with a custom domain. In the DNS settings, I've set up to a records for www.myssite.com and mysite.com to the value of my public elastic beanstalk url....
3
votes
2
answers
792
views
PayPal API SSL Issue - just started
We've just started receiving the following error when trying to process PayPal payments on our production system.
Our system hasn't been recently updated so the issue is not our code base.
The error ...
8
votes
1
answer
3k
views
Puma mini SSL error while connecting to rails server
Rails server throws a SSL error everytime I try to connect to the server.
[34087] Puma starting in cluster mode...
[34087] * Version 4.3.3 (ruby 2.6.5-p114), codename: Mysterious Traveller
[34087] * ...
0
votes
1
answer
534
views
SSL_connect returned=1 errno=0 state=error: certificate verify failed also I tried to install gem openssl but can't
require 'rubygems'
require 'httparty'
class myClass
include HTTParty
base_uri 'https://jsonplaceholder.typicode.com'
def posts
self.class.get('/users')
end
end
0
votes
1
answer
1k
views
SSL Certificate getaddrinfo: Name or service not known (SocketError) Rails-4.2.0
I have Rails 4.2.0 application with ruby version 2.2.0. I have a requirement where I need to create an SSL certificate for the test environment.
To set-up an SSL certificate I followed the below ...
0
votes
1
answer
384
views
Can you manually set the SSL cert_store for the Savon client gem?
Context
I'm currently trying to get my Savon client to read a peer certificate from the default system SSL cert folder. Basically, the effect I want to produce is calling set_default_paths on the ...
2
votes
0
answers
786
views
Update Your Amazon RDS SSL/TLS Certificates for a Rails 5 application
I have received an email informing me that by March 5, 2020 I need to set a new SSL certificate for my RDS database.
What makes me confused in the email is the part about updating the client ...
15
votes
2
answers
5k
views
Update Amazon RDS SSL/TLS Certificates - Elastic Beanstalk
AWS recently announced the need to:
Update Your Amazon RDS SSL/TLS Certificates by October 31, 2019
I have a Rails application hosted with a classic Elastic Beanstalk load balancer, which connects ...
6
votes
0
answers
531
views
Heroku redirects on acme-challenge despite ACM being disabled
I am attempting to setup Let's Encrypt free SSL on Heroku by following the steps here: https://github.com/dwyl/learn-heroku/blob/master/SSL-certificate-step-by-step-setup-instructions.md
I set the ...