Linux+Nginx+MySQL下配置論壇程式Discuz的基本教程_php執行個體

來源:互聯網
上載者:User

Crossday Discuz! Board(簡稱 Discuz!)是北京康盛新創科技有限責任公司推出的一套通用的社區論壇軟體系統。自2001年6月面世以來,Discuz!已擁有14年以上的應用曆史和200多萬網站使用者案例,是全球成熟度等級最高、覆蓋率最大的論壇軟體系統之一。目前最新版本Discuz! X3.2正式版於2015年6月9日發布,首次引入應用中心的開發模式。2010年8月23日,康盛創想與騰訊達成收購協議,成為騰訊的全資子公司。
Crossday Discuz! Board(以下簡稱 Discuz!,中國國家著作權局著作權登記號 2006SR11895)是康盛創想(北京)科技有限公司(英文簡稱Comsenz)推出的一套通用的社區論壇軟體系統,使用者可以在不需要任何編程的基礎上,通過簡單的設定和安裝,在互連網上搭建起具備完善功能、很強負載能力和可高度定製的論壇服務。Discuz! 的基礎架構採用世界上最流行的web編程組合PHP+MySQL實現,是一個經過完善設計,適用於各種伺服器環境的高效論壇系統解決方案。
作為國內最大的社區軟體及服務提供者,Comsenz旗下的 Discuz! 開發組具有豐富的 web應用程式設計經驗,尤其在論壇產品及相關領域,經過長期創新性開發,掌握了一整套從演算法,資料結構到產品安全性方面的領先技術。使得 Discuz! 無論在穩定性、負載能力、安全保障等方面都居於國內外同類產品領先地位。
下面我們就來看一下LNMP環境下的Discuz安裝配置過程:
1、配置nginx

vim /usr/local/nginx/etc/nginx.conf
user nginx; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; error_log logs/error.log info;events {  worker_connections 1024; }http {  include    mime.types;  server_tokens off;  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 logs/access.log main;  sendfile    on;  keepalive_timeout 65;  client_header_buffer_size 32k;            large_client_header_buffers 4 32k;   #客戶要求標頭緩衝大小 nginx預設會用client_header_buffer_size這個buffer來讀取header值,如果header過大,它會使用large_client_header_buffers來讀取如果設定過小HTTP頭/Cookie過大 會報400 錯誤 nginx 400 bad request求行如果超過buffer,就會報HTTP 414錯誤(URI Too Long)nginx接受最長的HTTP頭部大小必須比其中一個buffer大,否則就會報400的HTTP錯誤(Bad Request)。  client_max_body_size 8m;              #最大上傳附件8MB  client_body_buffer_size 128k;           #緩衝區代理緩衝使用者端請求的最大位元組數  keepalive_timeout    60;  tcp_nopush   on;  tcp_nodelay  on;  gzip on;   gzip_min_length 1k;  gzip_buffers   4 16k;  gzip_http_version 1.0;  gzip_comp_level 2;  include vh/bbs.yourich.com.cn.conf; }mkdir /usr/local/nginx/etc/vh vim /usr/local/nginx/etc/vh/discuz.confupstream  bbs.test.com {  server 127.0.0.1;  check interval=3000 rise=2 fall=5 timeout=1000 type=http;     #interval活動訊號間隔時間時間,單位為毫秒   #rsie請求2次正常的話,標記此realserver的狀態為up   #fall表示請求5次都失敗的情況下,標記此realserver的狀態為down   #timeout為逾時時間,單位為毫秒  check_http_send "GET / HTTP/1.1\r\nHOST:\r\n\r\n";  check_http_expect_alive http_2xx http_3xx http_4xx; }server {  listen 80;  server_name bbs.test.com;  index index.html index.php;  root /www/discuz;  access_log logs/bbs_access.log main;  error_log logs/bbs_error.log;  location ~ .*\.(jpg|jpeg|png|gif\js|css)$ {    root /www/discuz;    access_log off;  }  location / {    try_files $uri $uri/ /index.php?$args;  }  location ~.*\.(php)?$ {    expires -1s;    fastcgi_pass 127.0.0.1:9000;    fastcgi_index index.php;    try_files $uri = 404;    include fastcgi_params;    fastcgi_param SCRIPT_FILENAME /www/discuz$fastcgi_script_name;    fastcgi_param QUERY_STRING  $query_string;    fastcgi_param REQUEST_METHOD $request_method;    fastcgi_param CONTENT_TYPE  $content_type;    fastcgi_param CONTENT_LENGTH $content_length;  }}

2、下載discuz
下載discuz安裝包並解壓將upload目錄下的所有內容複寫到nginx指定的網站文檔跟目錄下 /www/discuz
設定許可權

chown -R nginx:nginx /www/discuz

3、建立資料

create database discuz default character set utf8; grant all privileges on discuz.* to discuz@'localhost' identified by 'discuz'; flush privileges;

4、安裝discuz
在瀏覽器中輸入http://ip/install 根據嚮導進行安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.