這只是一個(gè)快速演練,描述了如何設(shè)置一個(gè)體面的開發(fā)環(huán)境,允許輕松設(shè)置多個(gè)站點(diǎn)。
它已經(jīng)假定您已經(jīng)安裝并配置了PHP,MySql和
Apache已經(jīng)運(yùn)行的
Debian或Ubuntu操作系統(tǒng)
。
你還需要一個(gè)有效的sudo。
雖然其中一些東西是Debian / Ubuntu特定的,但將它應(yīng)用于任何其他發(fā)行版并不困難。
我們需要做的第一件事是創(chuàng)建一個(gè)'www'組。 該群組中的任何人都可以創(chuàng)建新網(wǎng)站。
sudo groupadd www
把自己放在這個(gè)群體中。
sudo gpasswd –a username www && newgrp www
現(xiàn)在,我們需要確保我們所有站點(diǎn)的存儲(chǔ)位置都由www擁有和寫入。
sudo chown :www /var/www sudo chmod g+ws /var/www
chmod的s開關(guān)設(shè)置粘滯位并確保在/ var / www中創(chuàng)建的所有目錄也屬于www組。
我們需要確保www可以寫入保存vhost配置的目錄。
sudo chown :www /etc/apache2/sites-*
接下來,我們將創(chuàng)建模板vhost配置。 我們將使用它來為我們的每個(gè)站點(diǎn)生成配置。
<VirtualHost *:80> ServerName {SITE}.local DocumentRoot /var/www/sites/{SITE}.local/htdocs DirectoryIndex index.php <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /var/www/sites/{SITE}.local/htdocs> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> ErrorLog /var/www/sites/{SITE}.local/logs/error.log LogLevel warn CustomLog /var/www/sites/{SITE}.local/logs/access.log combined </VirtualHost>
將其保存為/etc/apache2/sites-available/example.conf
現(xiàn)在,讓我們創(chuàng)建一個(gè)簡單的測試站點(diǎn)。
mkdir -p /var/www/sites/foo.local/{htdocs,logs} echo '<?php phpinfo(); ?>' > /var/www/sites/foo.local/htdocs/index.php cd /etc/apache2/sites-available sed -e 's/{SITE}/foo/g' example.conf > foo.conf sudo a2ensite foo.conf sudo /etc/init.d/apache2 restart echo '127.0.0.1 foo.local' | sudo tee -a /etc/hosts
這里有一些命令,但它非常簡單:
The first line creates the minimal required directory structure for a new web site.
We then create an index.php file which has a call to phpinfo() in it.
Next we move into the directory where our vhost configs are stored.
We then create a new vhosy config called foo.conf which is a copy of the example.conf from above, we use sed to replace all instances of '{SITE}' with 'foo'
Next, enable this vhost. This adds a symlink within /etc/apache2/sites-enabled
Restart Apache.
Add foo.local to our hosts file. This enables the url http://foo.local to resolve to our local machine and hence, be served by Apache.
這是真的。
你可以在這個(gè)基本想法上建立相當(dāng)多的東西。
我在多用戶系統(tǒng)中實(shí)現(xiàn)的一件事是向'www'組的成員提供新命令。
這些命令主要是
圍繞需要sudo的東西的
包裝器
,但它確實(shí)使得從最終用戶的角度來看整個(gè)過程更加清晰。
考慮到機(jī)會(huì)和興趣,我可能會(huì)在另一個(gè)教程中詳細(xì)介紹相關(guān)細(xì)節(jié)。
有一點(diǎn)需要注意。 如果您希望網(wǎng)站中的目錄可由Apache寫入,則必須使它們屬于www-data組,并且該組將需要寫入權(quán)限。 例如;
mkdir -p /var/www/sites/foo.local/uploads sudo chown :www-data /var/www/sites/foo.local/uploads sudo chmod g+w /var/www/sites/foo.local/uploads
本文名稱:一個(gè)簡單的基于Debian的開發(fā)環(huán)境。-創(chuàng)新互聯(lián)
文章源于:http://www.rwnh.cn/article40/cepoeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司、網(wǎng)站維護(hù)、Google、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站制作、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容