Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed]

  • Emrah KAYA
  • 2025-08-15
  • 19
Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed]
  • ok logo

Скачать Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed] бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed] или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed] бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed]

Hello everyone! I hope this video has helped solve your questions and issues. This video is shared because a solution has been found for the question/problem. I create videos for questions that have solutions. If you have any other issues, feel free to reach out to me on Instagram:   / ky.emrah  

Below, you can find the text related to the question/problem. In the video, the question will be presented first, followed by the answers. If the video moves too fast, feel free to pause and review the answers. If you need more detailed information, you can find the necessary sources and links at the bottom of this description. I hope this video has been helpful, and even if it doesn't directly solve your problem, it will guide you to the source of the solution. I'd appreciate it if you like the video and subscribe to my channel!Nginx keeps showing "welcome to nginx" for https but it's working fine with http [closed]




I've browsed through a couple questions here and also did what was recommended from this link:
nginx https not working
nginx https not working
I have the ssl cert and symlinked my sites-enabled and sites-available. I have also opened port 443.
My app is working fine with http for now as i've not enabled redirect but I still get Welcome to nginx! in HTTPS and it might be because nginx is getting confused with my config file? i'm not sure. below is my config file. Or maybe because of file permissions.
server {
listen 80;
listen [::]:80;
server_name somewebsite.ca www.somewebsite.ca;

Redirect
return 301 https://$host$request_uri;

If you don't want a redirect, remove the return 301 line and include a location block
access_log /var/log/nginx/reverse-access.log;
error_log /var/log/nginx/reverse-error.log;
location / {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}
client_max_body_size 300M;
}

HTTPS Server Block
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name somewebsite.ca;

ssl_certificate /etc/letsencrypt/live/somewebsite.ca/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/somewebsite.ca/privkey.pem;

ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers HIGH:!aNULL:!MD5;

Location blocks for different services
location /auth {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}

location /camera {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}

location /photo {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
client_max_body_size 300M;
}

server {
listen 80;
listen [::]:80;
server_name somewebsite.ca www.somewebsite.ca;

Redirect
return 301 https://$host$request_uri;

If you don't want a redirect, remove the return 301 line and include a location block
access_log /var/log/nginx/reverse-access.log;
error_log /var/log/nginx/reverse-error.log;
location / {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}
client_max_body_size 300M;
}

HTTPS Server Block
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name somewebsite.ca;

ssl_certificate /etc/letsencrypt/live/somewebsite.ca/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/somewebsite.ca/privkey.pem;

ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers HIGH:!aNULL:!MD5;

Location blocks for different services
location /auth {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}

location /camera {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
}

location /photo {
include proxy_params;
proxy_pass http://127.0.0.1:5000;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
client_max_body_size 300M;
}



Tags: amazon-web-services,nginx,sslSource of the question:
https://stackoverflow.com/questions/7...

Question and source license information:
https://meta.stackexchange.com/help/l...
https://stackoverflow.com/

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]