
服务器
Yuan_xii
这个作者很懒,什么都没留下…
展开
-
哈希加密算法
哈希加密SSL/TLS协议是为客户端到服务端之间搭建一条安全的网络数据传输通道。SSL/TLS协议是使用非对称加密来确保安全连接。公钥和私钥,数字签名是ssl证书提供身份验证的重要组成部分。颁发证书时,由证书提供商进行数字签名,该签名提供加密密钥SHA256SHA-2SHA-3对称加密DES(Data Encryption Standard):数据加密标准()3DES: 使用3个密钥,对相同的数据执行三次加密,增强加密强度。AES(Advanced Encryption Standard)原创 2021-07-15 11:01:30 · 729 阅读 · 0 评论 -
nginx 代理tomcat war包服务
#upstream tomcatserver{ # server 127.0.0.1:8080 weight=10;#}server { listen 80; listen [::]:80; #自动跳转到HTTPS(可选,和下面的部分域名跳转不能同时使用) if ($server_port = 80){ rewrite ^(/.*)$ https://$host$1 permanent; }原创 2021-05-31 08:12:28 · 1095 阅读 · 0 评论 -
ubuntu相关
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).if [ "${PS1-}" ]; then if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then # The file bash.bashrc already s原创 2021-03-02 17:14:51 · 424 阅读 · 0 评论 -
服务器一些配置记录
php-mysql -nginx‘DB_TYPE’ => ‘mysql’, // 数据库类型‘DB_HOST’ => ‘sqld.duapp.com’, // 服务器地址‘DB_NAME’ => ‘JoySWYGUntAiWdaAUaDx’, // 数据库名‘DB_USER’ => ‘85ab9d2374d048889b39445fdad1c72c’, // 用户名‘DB_PWD’ => ‘42367aa9063d44f38d4ed16cb41f1f71’, // .原创 2021-02-23 17:39:16 · 154 阅读 · 0 评论