九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
gerrit如何配置多端口
服務(wù)器的apache上配置了redmine和gerrit,redmine使用默認(rèn)端口80,gerrit按照網(wǎng)上配置httpd.conf,
<VirtualHost *>
ServerName localhost
ProxyRequests Off
ProxyVia Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location /login/>
AuthType Basic
AuthName "Gerrit Code Review"
AuthBasicProvider file
AuthUserFile /home/xx/gerrt_sites/etc/passwords
Require valid-user
</Location>
ProxyPass / http:
</VirtualHost>
這樣配置的結(jié)果就是通過(guò)127.0.0.1打開gerrit,但是不能打開127.0.0.1/redmine。網(wǎng)上說(shuō)可以通過(guò)在apache中配置多站點(diǎn)來(lái)解決,但是偶配置了多次都不成功,改用多端口解決。方法:
1.首先在/etc/apache2/ports.conf中添加
NameVirtualHost *:8090
Listen 8090
2.配置/etc/apache2/httpd.conf:
ServerName localhost
<VirtualHost *:8090>
ServerName localhost
ProxyRequests Off
ProxyVia Off
ProxyPreserveHost On
<Proxy *:8090>
Order deny,allow
Allow from all
</Proxy>
<Location /login/>
AuthType Basic
AuthName "Gerrit Code Review"
AuthBasicProvider file
AuthUserFile /home/xx/gerrit_sites/etc/passwords
Require valid-user
</Location>          ProxyPass / http://127.0.0.1:8088/
ProxyPassReverse / http://127.0.0.1:8088/
SetEnv force-proxy-request-1.0.1      SetEnv proxy-nokeepalive 1
</VirtualHost>
3.ProxyPass / http://127.0.0.1:8088/,這里的配置必須和/home/xx/gerrt_sites/etc/gerrit.config文件里面的
[httpd]
listenUrl = http://*:8088/ 相一致。
打開:127.0.0.1:8090,成功,127.0.0.1/redmine也可以打開。
之前一直用http://127.0.0.1:8088/來(lái)打開,結(jié)果總報(bào)錯(cuò):
Check the HTTP server's authentication settings.
The HTTP server did not provide the username in the header when it forwarded the request to Gerrit Code Review.
If the HTTP server is Apache HTTPd, check the proxy configuration includes an authorization directive with the proper location, ensuring it ends with '/':
雖然可以使用了,但是感覺(jué)用多端口比較麻煩,總忘記。再看看多站點(diǎn)怎么配置吧!
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Gerrit代碼審核服務(wù)器搭建全過(guò)程
同時(shí)支持ASP和PHP?apache與IIS共用80端口的方法
apache代理設(shè)置
Apache配置詳解(最好的APACHE配置教程)的相關(guān)文章推薦 - - JavaEye專...
【nginx網(wǎng)站性能優(yōu)化篇(2)】反向代理實(shí)現(xiàn)Apache與Nginx的動(dòng)靜分離(LNMPA)
Apache虛擬主機(jī)的配置
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服