Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.
Jalankan CodeBuild di server proxy eksplisit
Untuk berjalan AWS CodeBuild di server proxy eksplisit, Anda harus mengkonfigurasi server proxy untuk mengizinkan atau menolak lalu lintas ke dan dari situs eksternal, dan kemudian mengkonfigurasi variabel HTTP_PROXY
dan HTTPS_PROXY
lingkungan.
Topik
Konfigurasikan Squid sebagai server proxy eksplisit
Untuk mengonfigurasi server proxy Squid menjadi eksplisit, Anda harus melakukan modifikasi berikut pada file-nya/etc/squid/squid.conf
:
-
Hapus aturan daftar kontrol akses default (ACL) berikut.
acl localnet src 10.0.0.0/8 acl localnet src 172.16.0.0/12 acl localnet src 192.168.0.0/16 acl localnet src fc00::/7 acl localnet src fe80::/10
Tambahkan berikut ini sebagai pengganti ACL aturan default yang Anda hapus. Baris pertama memungkinkan permintaan dari AndaVPC. Dua baris berikutnya memberikan akses server proxy Anda ke tujuan URLs yang mungkin digunakan oleh AWS CodeBuild. Edit ekspresi reguler di baris terakhir untuk menentukan bucket S3 atau CodeCommit repositori di Wilayah. AWS Sebagai contoh:
-
Jika sumber Anda adalah Amazon S3, gunakan perintah acl download_src dstdom_regex .*s3\.us-west-1\.amazonaws\.com untuk memberikan akses ke bucket S3 di Wilayah.
us-west-1
-
Jika sumbernya AWS CodeCommit, gunakan
git-codecommit.<
untuk menambahkan AWS Wilayah ke daftar izin.your-region
>.amazonaws.com
acl localnet src 10.1.0.0/16 #Only allow requests from within the VPC acl allowed_sites dstdomain .github.com #Allows to download source from GitHub acl allowed_sites dstdomain .bitbucket.com #Allows to download source from Bitbucket acl download_src dstdom_regex .*\.amazonaws\.com #Allows to download source from Amazon S3 or CodeCommit
-
-
Ganti
http_access allow localnet
dengan yang berikut ini:http_access allow localnet allowed_sites http_access allow localnet download_src
-
Jika Anda ingin build Anda mengunggah log dan artefak, lakukan salah satu hal berikut:
-
Sebelum
http_access deny all
pernyataan, masukkan pernyataan berikut. Mereka memungkinkan CodeBuild untuk mengakses CloudWatch dan Amazon S3. Akses ke CloudWatch diperlukan agar CodeBuild dapat membuat CloudWatch log. Akses ke Amazon S3 diperlukan untuk mengunggah artefak dan caching Amazon S3.-
https_port 3130 cert=/etc/squid/ssl/squid.pem ssl-bump intercept acl SSL_port port 443 http_access allow SSL_port acl allowed_https_sites ssl::server_name .amazonaws.com acl step1 at_step SslBump1 acl step2 at_step SslBump2 acl step3 at_step SslBump3 ssl_bump peek step1 all ssl_bump peek step2 allowed_https_sites ssl_bump splice step3 allowed_https_sites ssl_bump terminate step2 all
-
Setelah Anda menyimpan
squid.conf
, jalankan perintah berikut:sudo iptables -t nat -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-port 3130 sudo service squid restart
-
-
Tambahkan
proxy
ke file buildspec Anda. Untuk informasi selengkapnya, lihat Sintaks Buildspec.version: 0.2 proxy: upload-artifacts: yes logs: yes phases: build: commands: - command
-
catatan
Jika Anda menerima kesalahan RequestError batas waktu, lihat RequestError kesalahan batas waktu saat berjalan CodeBuild di server proxy.
Untuk informasi selengkapnya, lihat File contoh squid.conf server proxy eksplisit dalam topik ini.
Buat CodeBuild proyek
Untuk menjalankan AWS CodeBuild dengan server proxy eksplisit Anda, atur variabel HTTP_PROXY
dan HTTPS_PROXY
lingkungannya dengan alamat IP pribadi dari EC2 instance yang Anda buat untuk server proxy dan port 3128 di tingkat proyek. Alamat IP pribadi terlihat sepertihttp://
. Untuk informasi selengkapnya, silakan lihat Buat proyek build di AWS CodeBuild dan Ubah pengaturan proyek build di AWS CodeBuild.your-ec2-private-ip-address
:3128
Gunakan perintah berikut untuk melihat log akses proxy Squid:
sudo tail -f /var/log/squid/access.log
File contoh squid.conf
server proxy eksplisit
Berikut ini adalah contoh squid.conf
file yang dikonfigurasi untuk server proxy eksplisit.
acl localnet src 10.0.0.0/16 #Only allow requests from within the VPC # add all URLS to be whitelisted for download source and commands to be run in build environment acl allowed_sites dstdomain .github.com #Allows to download source from github acl allowed_sites dstdomain .bitbucket.com #Allows to download source from bitbucket acl allowed_sites dstdomain ppa.launchpad.net #Allows to run apt-get in build environment acl download_src dstdom_regex .*\.amazonaws\.com #Allows to download source from S3 or CodeCommit acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports port 488 # gss-http acl Safe_ports port 591 # filemaker acl Safe_ports port 777 # multiling http acl CONNECT method CONNECT # # Recommended minimum Access Permission configuration: # # Deny requests to certain unsafe ports http_access deny !Safe_ports # Deny CONNECT to other than secure SSL ports http_access deny CONNECT !SSL_ports # Only allow cachemgr access from localhost http_access allow localhost manager http_access deny manager # We strongly recommend the following be uncommented to protect innocent # web applications running on the proxy server who think the only # one who can access services on "localhost" is a local user #http_access deny to_localhost # # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS # # Example rule allowing access from your local networks. # Adapt localnet in the ACL section to list your (internal) IP networks # from where browsing should be allowed http_access allow localnet allowed_sites http_access allow localnet download_src http_access allow localhost # Add this for CodeBuild to access CWL end point, caching and upload artifacts S3 bucket end point https_port 3130 cert=/etc/squid/ssl/squid.pem ssl-bump intercept acl SSL_port port 443 http_access allow SSL_port acl allowed_https_sites ssl::server_name .amazonaws.com acl step1 at_step SslBump1 acl step2 at_step SslBump2 acl step3 at_step SslBump3 ssl_bump peek step1 all ssl_bump peek step2 allowed_https_sites ssl_bump splice step3 allowed_https_sites ssl_bump terminate step2 all # And finally deny all other access to this proxy http_access deny all # Squid normally listens to port 3128 http_port 3128 # Uncomment and adjust the following to add a disk cache directory. #cache_dir ufs /var/spool/squid 100 16 256 # Leave coredumps in the first cache dir coredump_dir /var/spool/squid # # Add any of your own refresh_pattern entries above these. # refresh_pattern ^ftp: 1440 20% 10080 refresh_pattern ^gopher: 1440 0% 1440 refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 refresh_pattern . 0 20% 4320