> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/network/protocols/https.md).

# HTTPS

## HTTP의 문제점

* HTTP의 응답과 요청은 평문으로 전달된다.
* 누군가 중간에서 가로챈다면 중요한 정보가 유출될 수 있다.
* HTTPS(HTTP over Secure socket layer)는 [TLS(Transport Layer Security)](broken://pages/2d77ca8dcfb1d4623182dc7626281b4b275e07b8) 프로토콜을 도입해 위 문제점을 보완한다.

***

## HTTPS

* 초기에는 민감한 데이터를 취급하는 웹 서비스(금융, 정부 시스템 등) 위주로 사용되었다.
* 현재 개발되는 서비스들은 규모에 상관없이 HTTPS를 사용하는 추세이다.
* 웹 서버의 URL이 `http://` = HTTP 프로토콜, `https://` = HTTPS 프로토콜
* HTTP 메시지와 달리 HTTPS 메시지의 요청과 응답 내용은 복호화 키가 없으면 확인할 수 없다.

{% hint style="info" %}
HTTPS는 TLS를 사용해 통신 내용을 암호화함으로써 중간자 공격 등으로부터 데이터를 보호한다. 자세한 내용은 [TLS(Transport Layer Security)](broken://pages/2d77ca8dcfb1d4623182dc7626281b4b275e07b8)를 참고하세요.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/network/protocols/https.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
