您好,登錄后才能下訂單哦!
怎么在nginx中設置代理服務器?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
Step 1: 啟動nginx
[root@devops ~]# docker run -p 8888:8888 --name proxy-nginx -d nginx c7baab8ea9da0a148aa9bcc1295a54391906f6be94efca7189df23ceecdbf714 [root@devops ~]#
Step 2: 設定nginx
進入容器中
[root@devops ~]# docker exec -it proxy-nginx sh
update apt-get
安裝ping/vi/ps:apt-get update; apt-get install procps vim inetutils-ping
設定nginx.conf
加入如下內容,即可實現最簡單的代理功能
resolver 8.8.8.8; server { listen 8888; location / { proxy_pass http://$http_host$request_uri; } }
其余信息均為nginx.conf的確認內容,未做修改
# cat nginx.conf user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; resolver 8.8.8.8; server { listen 8888; location / { proxy_pass http://$http_host$request_uri; } } include /etc/nginx/conf.d/*.conf; } #
Step 4: 設定客戶端
在客戶端設定服務器IP和上述的端口8888,即可通過改代理服務器連接網絡。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。