Commit 5a75d8392e88c23b9112b05ad285e04d7fc9d170

Authored by 鲜彤
1 parent 28f274f3

https

conf/nginx/conf.d/k-boxing.vchangyi.com.conf
1 1 server {
2 2 listen 80;
3   - error_log /var/log/nginx/qy.nginx_error.log error;
4   - server_name k-boxing.vchangyi.com;
  3 + server_name k-boxing-rp-topic-api.vchangyi.com;
  4 + return 301 https://$host$request_uri;
  5 +}
  6 +
  7 +server {
  8 + listen 443 ssl;
  9 + server_name k-boxing-rp-topic-api.vchangyi.com;
5 10 index index.html index.htm index.php;
6 11 root /var/www/html/k-boxing.vchangyi.com/www;
7   - location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|thumb|xml|swf|txt|woff|ttf|eot|svg|otf|htm|html|apk|map)$ {
  12 +
  13 + # error_log /var/log/nginx/qy.nginx_error.log error;
  14 + ssl on;
  15 + ssl_certificate /etc/nginx/conf.d/certs/changyi/1_vchangyi.com_bundle.crt;
  16 + ssl_certificate_key /etc/nginx/conf.d/certs/changyi/2_vchangyi.com.key;
  17 + ssl_prefer_server_ciphers on;
  18 + ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  19 + ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4";
  20 + add_header Strict-Transport-Security max-age=31536000;
  21 +
  22 + location ~* ^.+1\.php$ {
  23 + access_log /dev/null;
  24 + }
  25 + location ~* ^.+loadbalanceStatus\.html$ {
  26 + access_log /dev/null;
  27 + }
  28 +
  29 + location ~* ^.+.(xls|jpg|jpeg|gif|css|png|js|ico|thumb|xml|swf|txt|woff|ttf|eot|svg|otf|htm|html|apk|map)$ {
8 30 # 微信前端 h5
9 31 if ($request_uri ~ ^/([^/]+)/([^/]+)/h5/index.html) {
10 32 rewrite ^/([^/]+)/([^/]+)/h5 /$2/h5/index.html break;
11 33 }
12   -
13 34 if ($request_uri ~ ^/([^/]+)/([^/]+)/h5/index-dev.html) {
14 35 rewrite ^/([^/]+)/([^/]+)/h5 /$2/h5/index-dev.html break;
15 36 }
16   -
17 37 if ($request_uri ~ ^/([^/]+)/([^/]+)/h5/(.*)(jpg|jpeg|gif|css|png|js|ico|thumb|xml|swf|txt|woff|ttf|eot|svg|otf|apk)) {
18 38 rewrite ^/([^/]+)/([^/]+)/h5/(.*) /$2/h5/$3 break;
19 39 }
20   -
21 40 access_log /dev/null;
22 41 expires 10d;
23 42 }
24 43  
25 44 location / {
26   - index index.html index.htm index.php;
27   - access_log /var/log/nginx/k-boxing.vchangyi.com-access.log combined buffer=32k;
28   -
29 45 if ($request_uri ~ ^/([^/]+)/([^/]+)/h5) {
30 46 rewrite ^/([^/]+)/([^/]+)/h5 /$2/h5/index.html break;
31 47 }
32   -
  48 + if ($request_uri = /) {
  49 + rewrite ^/ https://$host/admincp/ break;
  50 + }
  51 + if ($request_uri ~ ^/(\#|\?)) {
  52 + rewrite ^/ https://$host/admincp/ break;
  53 + }
33 54 if ($request_uri ~ ^/admincp) {
34   - rewrite ^/admincp /admincp/index.html break;
  55 + break;
35 56 }
36   -
37 57 if (!-e $request_filename) {
38 58 rewrite ^/(.*)$ /index.php last;
39 59 break;
40 60 }
41 61 }
42   -
43 62 location ~ [^/]\.php(/|$) {
44   - try_files $uri =404;
45   - chunked_transfer_encoding off;
46   - # fastcgi_pass 127.0.0.1:9000;
47   - # fastcgi_pass unix:/tmp/php-cgi.sock;
  63 + #try_files $uri =404;
48 64 fastcgi_pass fpm:9000;
49 65 fastcgi_index index.php;
50 66 include fastcgi.conf;
51   -
52 67 # 设置 PATH_INFO 并改写 SCRIPT_FILENAME, SCRIPT_NAME 服务器环境变量
53 68 set $path_info "";
54 69 set $real_script_name $fastcgi_script_name;
... ... @@ -56,24 +71,20 @@ server {
56 71 set $real_script_name $1;
57 72 set $path_info $2;
58 73 }
59   -
  74 + fastcgi_param HTTP_HOST 'k-boxing-rp-topic-api.vchangyi.com';
60 75 fastcgi_param PATH_INFO $path_info;
61 76 fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
62 77 fastcgi_param SCRIPT_NAME $real_script_name;
63 78 }
64   -
65   - location /nginx_status {
66   - stub_status on;
67   - access_log off;
68   - }
69   -
70   - location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
  79 + location ~ .*\.(jpg|jpeg|gif|css|png|js|ico|thumb|xml|swf|txt|woff|ttf|eot|svg|otf|htm|html|apk|map)$ {
71 80 expires 30d;
  81 + access_log /dev/null;
72 82 }
73   -
74 83 location ~ .*\.(js|css)?$ {
75   - expires 12h;
  84 + expires 1d;
  85 + access_log /dev/null;
76 86 }
77 87  
78   - access_log off;
79   -}
80 88 \ No newline at end of file
  89 + #access_log /data/wwwlogs/k-boxing.vchangyi.com-access$log_date.log;
  90 + #access_log /data/wwwlogs/k-boxing.vchangyi.com-access.log access;
  91 +}
... ...
php/php56/Dockerfile
... ... @@ -123,3 +123,10 @@ RUN apt-get update \
123 123 # && apt-get install -y libmemcached-dev zlib1g-dev \
124 124 # && pecl install memcached-2.2.0 \
125 125 # && docker-php-ext-enable memcached
  126 +COPY ./redis-3.1.4.tgz /tmp/
  127 +RUN cd /tmp/ \
  128 + && tar -xf redis-3.1.4.tgz \
  129 + && rm redis-3.1.4.tgz \
  130 + && ( cd redis-3.1.4 && phpize && ./configure && make && make install ) \
  131 + && rm -r redis-3.1.4 \
  132 + && docker-php-ext-enable redis
126 133 \ No newline at end of file
... ...
php/php56/redis-3.1.4.tgz 0 → 100644
No preview for this file type