“吃鸡”游戏,双排第2名
游戏开始,伙伴挂机。自己看着地图跑白圈(安全区)。小圈时不知道被什么地方打,随意扔一个手雷,之后趴在草地里用绷带。剩2人时,不知道对方在哪,但他时不时扔手雷。最后呢,死在安全圈外了。
游戏开始,伙伴挂机。自己看着地图跑白圈(安全区)。小圈时不知道被什么地方打,随意扔一个手雷,之后趴在草地里用绷带。剩2人时,不知道对方在哪,但他时不时扔手雷。最后呢,死在安全圈外了。
环境:护卫神 apache大师 2.1.0,Windows 2012
过程:
编辑 C:\HwsApacheMaster\Apache\conf\extra\httpd-ssl.conf 文件,修改 SSLSessionCache 文件的存储路径,使之有效;之后新建一个https的站点配置内容,如本例的 mp.anqun.org,证书文件保存在 C:\HwsApacheMaster\Apache\conf\ssl 目录内
# Inter-Process Session Cache:
# Configure the SSL Session Cache: First the mechanism
# to use and second the expiring timeout (in seconds).
#SSLSessionCache "dbm:E:/Huweishen.com/HwsApacheMaster/Apache2.2/logs/ssl_scache"
# SSLSessionCache "shmcb:E:/Huweishen.com/HwsApacheMaster/Apache2.2/logs/ssl_scache(512000)"
SSLSessionCache "shmcb:logs/ssl_scache(512000)"
SSLSessionCacheTimeout 300
# Semaphore:
# Configure the path to the mutual exclusion semaphore the
# SSL engine uses internally for inter-process synchronization.
SSLMutex default
##
## SSL Virtual Host Context
##
<VirtualHost *:443>
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
SSLCertificateFile "conf\ssl\1_mp.anqun.org_bundle.crt"
SSLCertificateKeyFile "conf\ssl\2_mp.anqun.org.key"
ServerName "mp.anqun.org"
DocumentRoot "C:\HwsApacheMaster\wwwroot\mp_f75yPU"
<Directory "C:/HwsApacheMaster/wwwroot/mp_f75yPU">
Options FollowSymLinks ExecCGI
#AddHandler fcgid-script .php
#FcgidWrapper "/php-cgi.exe" .php
DirectoryIndex index.html index.htm index.php default.php index.jsp
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
环境:Debian 8, MariaDB 10.0,HeidiSQL 9.4
过程:
环境:Ubtuntu 16.04
过程:
参考:
环境:Debian 8 64位,seafile-server_6.2.2_x86-64
目的:使用https://swas.anqun.org 访问到 Seahub 网站
过程:
vi /etc/nginx/sites-enabled/swas.conf #创建swas.anqun.org反向代理配置内容,详细如下:
server {
listen 80;
server_name swas.anqun.org;
rewrite ^ https://$http_host$request_uri? permanent; # force redirect http to https
# Enables or disables emitting nginx version on error pages and in the "Server" response header field.
server_tokens off;
}
server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/214298380010268.pem; # path to your cacert.pem
ssl_certificate_key /etc/ssl/214298380010268.key; # path to your privkey.pem
server_name swas.anqun.org;
server_tokens off;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto https;
access_log /var/log/nginx/seahub.access.log;
error_log /var/log/nginx/seahub.error.log;
proxy_read_timeout 1200s;
client_max_body_size 0;
}
}