AWS
-
aws s3 cp 전체파일IT 2020. 3. 30. 17:54
#출처 https://stackoverrun.com/ko/q/12292934 amazon-web-services - aws s3 cp - 루트 디렉토리에있는 모든 객체를 복사하지만 하위 디렉토리는 복사하지 마십시오. s3 버킷 루트 폴더 내의 내용을 루트 내부의 다른 폴더에 복사해야합니다. 다른 폴더 (folder1, folder2)를 제외하고 root (textfile1.txt 등)의 모든 파일을 folder3에 복사하려고합니다. aws s3 복사 명령은 무엇이 있습니까? / folder1 folder2 textfile1.txt textfile2.txt ... stackoverrun.com 옵션 값을 넣어줘야한다. aws s3 cp s3://my-bucket s3://my-bucket/destinati..
-
AWS SSL 인증서 ACM카테고리 없음 2020. 3. 19. 14:50
#신규 SSL인증서 등록 #상위 키로 등록 ACM AWS Certificate Manage 인증서 본문 -NGINX *.CRT.PEM -----BEGIN CERTIFICATE----- 키AAAAAAAAAAAAAAAAAAA -----END CERTIFICATE----- 인증서 프라이빗 키 -NGINX *.key.PEM -----BEGIN RSA PRIVATE KEY----- 키AAAAAAAAAAAAAAAAAAA -----END RSA PRIVATE KEY----- 인증서 체인 -IIS CHAIN CA.CRT -----BEGIN CERTIFICATE----- AAAAAAAAAAAAAAAAAAAAAA -----END CERTIFICATE-----
-
aws alb 리다이렉트IT 2020. 3. 16. 16:19
aws alb nginx 상황 #포트 80->https:1443 #포트 80 -> ssl 1443 --------------- aws 설정 conf.d/ssl.conf server { listen 80; server_name www.com; client_max_body_size 5M; keepalive_timeout 10; #access_log off; #access_log /var/log/nginx/www.com main; error_log /tmp/www.com warn; location / { # proxy_pass http://127.0.0.1:8301/; # proxy_redirect http://127.0.0.1:8301/ http://$host; proxy_set_header Host $ho..
-
aws alb 설정 값IT 2020. 3. 12. 16:12
#aws -alb - nginx 80-> 443으로 설정 할때 # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; # Load dynamic modules. See /usr/share/nginx/README.dynamic. include /usr/share/nginx/modules/*.co..
-
s3 로그 이관IT 2020. 2. 19. 12:07
#해당 폴더에서 전체 파일을 s3로 이관하기 # --recursive 넣는다. aws s3 cp . s3://my-fruits --recursive upload: ./cherry.txt to s3://my-fruits/cherry.txt upload: ./apple.txt to s3://my-fruits/apple.txt upload: favorites/melon.txt to s3://my-fruits/favorites/melon.txt #출처 https://chobolife.github.io/blog/2019/08/04/ec2-s3-authority/