net::ERR_CERT_AUTHORITY_INVALID
I have a project on NodeJs(backend) and Angular9(frontend). I was doing a SignUp.I have this api from the backend(NodeJs) side http://localhost:3001/account/login and upon implementation the project...
View ArticleHow to fix Laravel request/routes/urls - it thinks url is http when it is...
My server uses SSL and thus all my routes/urls use https. I recently discovered a bug in Laravel 5.7 which was exposed when trying to use Email Verification, which does not work on a server with https....
View ArticleDoes my API need it's own URL or can it share the url of my webapplication
I have a question about managing my https url between the API and my front end website.I have developed an ios/android/web application using react native expo. I have a nodejs API that serves these....
View Articledotnet dev-certs certificate not trusted
I am working through Adam Freeman's book "Pro ASP.Net Core 3". I have gotten to the introduction to https. He instructs us to use Powershell and run these commands in this orderdotnet dev-certs https...
View ArticleCookies not being sent over cross origin, locally everything works
I'm facing the following problem:I have a Angular application as the frontend and a NestJS app as my API.I'm using Supabase and @supabase/ssr to handle the auth flow. The auth flow is the following:I...
View ArticleRunning local Node.js UI application using HTTPS/Nginx getting 502 Gateway...
I'm trying to get a Node.js UI application using Azure OIDC/MSAL running locally under HTTPS using Nginx to get through the authentication process. This application is using the code from this...
View ArticleHttp on apache to https on nginx
How do I redirect my http://example.com website on apache to https://www.example.com website on nginx.Thanks
View Articlehow to redirect http to https in nginx, my default port is 81 on nginx
I am trying to redirect HTTP to HTTPS. My default port is 81 on nginx.server { listen 81; server_name deveshvyas.in; return 307 https: //deveshvyas.in$request_uri;}server { listen[::]: 443 ssl http2;...
View Articlenginx redirect http to https on localhost
I'm testing nginx locally as a reverse proxyI want to redirect wildcard subdomain http to httpsThe subdomains are handled programmatically in the application server { listen 80; server_name...
View ArticleHosts file and nginx redirect from http to https on development server
I am developing a website, and I just installed ssl on the production website (I have never done this before). When I load the development website the page redirects to https and breaks because https...
View ArticleHow to forcefully redirect from http to https on AWS ec2 with Nginx
I am using AWS ec2 for Hosting my Web Application which is running on PHP.I have SSL for it but due to some of my old backlinks which are having http request. When this request gets called my server...
View ArticleNginx HTTP to HTTPS redirect only working on one server_name?
I've been trying to get http to https redirect via nginx for the better part of a day, and it's been a struggle. I've checked over several stackoverflow questions, and a number of articles on the...
View Articlenginx redirect http to https domain
My application is running on AWS EC2 instance. I have a domain name using HTTPS from cloudflare. I have added "A record" at cloudflare to EC2 IP addressThe following in the Nginx configuration i...
View ArticleUnable to find the wrapper "https" with file_get_contents
Calling file_get_contents() with https:// urls give me the following error:warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?I've...
View ArticleTroubleshooting HTTPS Issues with .NET Application on IIS Server
i have a IIS Server with all installed bundles and co ...If i run the build locally https works and on server there is nothing. Via PortScanner i see it opened port and EventManger shows me process...
View ArticleHow to get through security error pages in the Firefox web browser?
I'm aware that we use thisisunsafe in Chrome to bypass such error pages but how can I bypass such pages in Firefox?I get the following error when I load the page:-Firefox detected a potential security...
View ArticleMy Next Button Is Not Redirecting To Next Page
I am at my very first attempt at website making and am trying to make a very simple web page where people enter, write their name/nickname, pick an adress (if possible to enable location based services...
View ArticleNext.js (React 18) not working with HTTPS [duplicate]
I'm upgraded my existing Next.js project to React 18. Everything ok in http local server but im trying to run project with ssl.Now im getting this errorWarning: ReactDOM.render is no longer supported...
View ArticleMy Next button is not redirecting to the next page
I am at my very first attempt at website making and am trying to make a very simple webpage where people enter, write their name/nickname, pick an address (if possible to enable location based services...
View ArticleHow to prove a request is coming from a real iOS or Android device?
I am building an app that will make HTTP requests to a server. I would like to know that the requests are coming from an app downloaded from an iOS App Store, or Android App Store. Is there any way to...
View Article