部署网站平台
安装MySQL
编译安装MySQL-5.1
# ./configure --prefix=/usr/local/mysql--with-charset=utf8 --enable-assembler --with-extra-charsets=all--with-plugins=all
1 2 3 4 5 6 7 8 9 |
|
1 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
安装MySQL5.6
1 2 3 4 5 6 7 8 9 |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 |
|
安装Apache-2.4.6
安装apr-1.4.6
1 2 3 4 |
|
安装apr-util-1.4.1
1 2 3 |
|
安装pcre-8.32
1 2 3 4 |
|
安装httpd-2.4.6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
1 2 3 |
|
1 2 |
|
安装Nginx-1.4.7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
1 2 |
|
安装PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
1 2 3 4 5 6 7 8 9 10 |
|
1 2 3 4 5 6 7 8 9 10 11 |
|
整合Apache与PHP
1 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
整合Nginx与PHPgame
# vim /etc/nginx/nginx.conf
worker_processes 4;
events{
worker_connections 65535;
}
http {
include 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"‘;
server_names_hash_bucket_size
128;
client_header_buffer_size
32k;
large_client_header_buffers
4 32k;
client_max_body_size
8m;
sendfile
on;
tcp_nopush on;
keepalive_timeout
60;
tcp_nodelay
on;
fastcgi_connect_timeout
300;
fastcgi_send_timeout
300;
fastcgi_read_timeout
300;
fastcgi_buffer_size
64k;
fastcgi_buffers
4 64k;
fastcgi_busy_buffers_size
128k;
fastcgi_temp_file_write_size
128k;
gzip
on;
gzip_min_length 1k;
gzip_buffers 4
16k;
gzip_http_version
1.0;
gzip_comp_level
2;
gzip_types text/plain
application/x-javascripttext/css application/xml;
gzip_vary
on;
server {
listen 80;
server_name bbs.xxx.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /data/htdocs/xxx_bbs;
index index.html index.htm;
location ~* \.php$ {
root /data/htdocs/xxx_bbs;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
include /etc/nginx/rewrite.conf;
}
error_page 500
502 503 504 /50x.html;
location
= /50x.html {
root html;
}
}
}
1 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
1 |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
欢迎大家访问我的个人网站 萌萌的IT人