getting ssl to work #303
Labels
No milestone
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
ric/nginx-php-fpm#303
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi,
I have setup nginx on ESXi via Proton. http is running fine. Now I´d like to enable ssl.
In the conf/nginx file I have stored my selfcigned certificate together with nginx-site.conf and nginx-site-sll.conf
In nginx-site.conf I am forwarding all traffic to https:
`# HTTP server block (port 80) to redirect to HTTPS (port 443)
server {
listen 80;
server_name 192.168.1.103;
}`
So far ok and working.
My nginx-site-ssl.conf looks that way:
`server {
listen 443 ssl;
server_name 192.168.1.103;
But it is not working and also in the log I don´t see any entries. Am I doing anything wrong? In the browser I am only getting:
Firefox: " connection failed."
Chrome: "Website cannot be reached" ERR_CONNECTION_REFUSED
Issues is solve! I put everything into the nginx-site-ssl.conf and now the ssl connection is established!