Search result

nginx http(80) 접속을 자동으로 https(443,ssl)로 변경하기

- 자동 redirect 하는 방법 - 설정 파일 nginx.conf 수정 server { listen 80; server_name host.example.com; # HTTPS 로 자동 변경 return 301 https://host.example.com$request_uri; } server { listen 443 ssl;...

Web https ssl

apache httpd; http 로 들어올 경우 https 로 강제 전환(force redirect)

Page edited by 정광섭 아파치 모듈중 mod_rewrite 를 사용하면 http 로 연결한 client 를 https 로 전환 가능하다.Ubuntu 사용자는 다음 명령어로...

https

[JP] AWSからHTTPSを使ってウェブアプリケーションデプロイする方法

このポストはAWSからHTTPSを使ってウェブアプリケーションをデプロイした時の個人記録です。簡単に何をしたかに対して記録しました。Continue reading on Medium »

LAMP AWS infrastructure deployment https

[KO] AWS에서 HTTPS로 웹 애플리케이션 디플로이하기

이 포스트는 AWS에서 HTTPS를 이용하는 웹 애플리케이션을 디플로이 하였을 때 작성한 개인적인 기록입니다. 간단하게 무엇을 하였는지에 대해서만 기록해놓았습니다.Continue reading on Medium »

infrastructure https LAMP AWS deployment

How to redirect HTTP traffic to HTTPS when using AWS ALB

This is a troubleshooting history about composing ALB-EC2 infrastructure. I got the solution from this following document.Continue reading on Medium »

application-load-balancer https infrastructure

Deploying web application with HTTPS using AWS

This is the record when I deployed web application with HTTPS using AWS. I wrote simply just what I did.Continue reading on Medium »

infrastructure https deployment AWS LAMP

CentOS7 Let's Encrypt 무료 인증서 사용하기

Let's Encrypt 를 사용하여 https 를 운영하기 위하여 아래 패키지를 설치합니다.(루트 권한) yum install python2-certbot-nginx 웹서버로 nginx 를 사용할 경우이며, 아래의 명령어를 실행하여 https 를 사용할 도...

서버관리 centos7 https Let's Encrypt