Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
1
  • Loading branch information
javalive committed Sep 27, 2019
1 parent 384cb2e commit 1d03f10
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 1 deletion.
27 changes: 27 additions & 0 deletions admin/origin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -664,3 +664,30 @@ If-Range 헤더에 의해 원본서버가 ``206 Partial Content`` 가 아닌 ``2
.. note::

If-Modified-Since 헤더와 If-None-Match 헤더를 ``unset`` 하면 TTL이 만료된 컨텐츠는 항상 다시 다운로드 한다.



.. _origin_aws_s3_authentication:

AWS S3 인증
====================================

AWS S3 인증스펙인 `Authenticating Requests (AWS Signature Version 4) <https://docs.aws.amazon.com/ko_kr/AmazonS3/latest/API/sig-v4-authenticating-requests.html>`_ 를 지원한다. ::

# server.xml - <Server><VHostDefault><OriginOptions>
# vhosts.xml - <Vhosts><Vhost><OriginOptions>

<Authorization Type="AWS-S3" Status="Inactive">
<AccessKeyID>KeyID</AccessKeyID>
<SecretAccessKey>seceret-key</SecretAccessKey>
<Region>seoul</Region>
</Authorization>

``<Authorization>`` 의 ``Status`` 속성이 ``Active`` 인 경우에 동작한다.
`Authenticating Requests (AWS Signature Version 4) <https://docs.aws.amazon.com/ko_kr/AmazonS3/latest/API/sig-v4-authenticating-requests.html>`_ 동작에 필요한 세부 설정 ``<AccessKeyID>`` , ``<SecretAccessKey>`` , ``<Region>`` 을 구성한다.
만약 모든 가상호스트의 원본서버가 AWS S3에 존재한다면 기본 가상호스트 ``<VHostDefault>`` 로도 설정이 가능하다.


.. note::

읽기 권한인 GET 메소드만을 지원한다. 쓰기(POST, PUT, FETCH)는 캐시서버의 목적에 부합하지 않는다.
11 changes: 11 additions & 0 deletions admin/releasenote.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ Appendix E: 릴리스 노트 ``[CDN]``
v2.6.x
====================================

2.6.15 (2019.9.26)
----------------------------

**기능개선/정책변경**

- 원본서버 - :ref:`origin_aws_s3_authentication` 지원
- ImageTool(DIMS) - 이미지 포맷이 변경되면, 변경된 포맷의 표준 Content-Type 헤더를 제공
- WM - Apache 업데이트 (v2.4.41)



2.6.14 (2019.8.14)
----------------------------

Expand Down
11 changes: 11 additions & 0 deletions admin/releasenote_enterprise.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ Appendix F: 릴리스 노트 ``[Enterprise]``
v19.x
====================================


19.09.0 (2019.9.26)
----------------------------

**기능개선/정책변경**

- 원본서버 - :ref:`origin_aws_s3_authentication` 지원
- WM - Apache 업데이트 (v2.4.41)



19.08.0 (2019.8.14)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ STON Edge Server 완벽 가이드


:저자: STON 개발팀
:최신버전: ``[CDN]`` v2.6.14 / ``[Enterprise]`` v19.08.0
:최신버전: ``[CDN]`` v2.6.15 / ``[Enterprise]`` v19.09.0


1부. STON 기본: 설정 배우기
Expand Down

0 comments on commit 1d03f10

Please sign in to comment.