일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- MSYS2
- 인증
- Xcode
- OTP
- openssl
- 앱스토어
- 앨범북
- kmip
- appres
- OSX
- SSL
- FIDO2
- SWIFT
- WebAuthn
- css
- 앱리소스
- SwiftUI
- MFA
- Android
- 안드로이드
- fido
- otpkey
- git
- 애플
- apple
- 2FA
- SSH
- MYSQL
- albumbook
- Nodejs
Archives
- Today
- Total
인디노트
[리눅스] Proxy 서버 구축(squid) 본문
yum install squid
/etc/squid/squid.conf
[root@client ~]#
vi /etc/profile
# add follows to the end (set proxy settings to the environment variables)
MY_PROXY_URL="http://prox.srv.world:3128/"
HTTP_PROXY=$MY_PROXY_URL
HTTPS_PROXY=$MY_PROXY_URL
FTP_PROXY=$MY_PROXY_URL
http_proxy=$MY_PROXY_URL
https_proxy=$MY_PROXY_URL
ftp_proxy=$MY_PROXY_URL
export HTTP_PROXY HTTPS_PROXY FTP_PROXY http_proxy https_proxy ftp_proxy
[root@client ~]#
source /etc/profile
# it's OK all, but it's possible to set proxy settings for each application like follows
# for yum
[root@client ~]#
vi /etc/yum.conf
# add to the end
proxy=http://prox.srv.world:3128/
# for wget
[root@client ~]#
vi /etc/wgetrc
# add to the end
http_proxy = http://prox.srv.world:3128/
https_proxy = http://prox.srv.world:3128/
ftp_proxy = http://prox.srv.world:3128/
반응형
'내 프로젝트' 카테고리의 다른 글
Let's Encrypt SSL 인증서 갱신 (0) | 2022.09.18 |
---|---|
iOS 앱 유료앱인 File Explorer 리딤코드 100개 (0) | 2021.04.07 |
Apple App Permissions (0) | 2019.01.29 |
데이터베이스 암호를 해독 할 수 없으며 ENTMGR.INI에서 암호를 재설정 할 수 없습니다"라는 오류를 어떻게 해결합니까? (0) | 2018.11.14 |
IG bind sample (0) | 2018.04.30 |
Comments