today's offers - xanax use in pregnancy xanax xr be abused soma internet pharmacies fedex soma without priscription fed ex phentermine parkinson drugs phentermine baclofen tramadol together ordering tramadol cod viagra find search 76k cialis pages cialis buy on line viagra for sale without a prescription buy onlinecom phentermine viagra ambien and klonopin drug interaction buy ambien overnight cheap online pharmacies valium saturday delivery valium online with no prescription or membership fioricet overnight no rx cheap fioricet without a prescription order meridia cod fedex meridia cheap fed ex delivery xanax bradycardia what does xanax look like american soma how to buy soma online without prescriptin phentermine overnight echeck c o d 375 mg phentermine rss feed cheap no prescription tramadol stop the tramadol generic prices online cialis generic cialis fedex chinese herbal viagra taking partial pill of viagra ambien and pregnancy smoking ambien cod online valium buy cheap valium without prescription no prescription fioricet with fedex fioricet without prescription in Brasilia order meridia meridia information

Posts Tagged svn

subversion without apache….

#vim /usr/local/etc/ports.conf

devel/subversion: WITHOUT_BDB | WITHOUT_NEON | WITH_APACHE2_APR | WITH_SVNSERVE_RAPPER | WITH_MOD_DAV_SVN

接下來就去/usr/ports/devel/subservion 下裝起來

#vim /etc/rc.conf
svnserve_enable=”YES”
svnserve_flags=”-d –listen-port=3690 –listen-host=0.0.0.0″
svnserve_data=”/home/svnroot”
svnserve_user=”www”
svnserve_group=”www”

svnserver_data 記得設一下…
不然default 會在 / 根目錄下…

mkdir -p /home/svnroot/projectName ; svnadmin create /home/svnroot/projectName

編輯一下權限
先去/home/svnroot/projectName/conf
這個目錄下會有這三個檔案
authz, passwd, svnserve.conf
設定檔案位置
#vim /home/svnroot/projectName/conf/svnserve.conf
設定authd 和passwd
兩個檔案的位置
password-db = passwd
authz-db = authz

#vim authz
[/]
* = r
www = rw
root = rw
[projectName:/]
* = r
www = rw
root = rw

#vim passwd
[users]
# harry = harryssecret
# sally = sallyssecret
www = www(你的密碼)
root = root(你的記密)

就這樣….非常的簡易…. :8-):

No Comments