# AWS RHEL 환경

RHEL 시스템에서 PLURA 클라우드 서비스에 접속하기 위해 Proxy 시스템을 사용하는 경우, 아래와 같이 Proxy 설정을 진행합니다.

* Proxy 설정 파일 생성 및 편집

```bash
vi /etc/profile.d/plura.sh
```

```
  http_proxy=http://(Proxy IP주소):(Proxy 포트)
  https_proxy=$http_proxy
  no_proxy=”127.0.0.1, amazonlinux.ap-northeast-2.amazonaws.com”
  export http_proxy https_proxy no_proxy
```

* Proxy 설정 예시

<figure><img src="https://qubitsec.github.io/docs/images/Additianal/aws/1.png" alt="" width="563"><figcaption></figcaption></figure>

* 프록시를 통한 접속 테스트

```bash
curl -v https://repo.plura.io
```
