有 211 筆資料符合您搜尋的條件
- 週一 7月 08, 2019 12:30 am
- 版面: Mac
- 主題: SecureCRT + SecureFx 8.5.4
- 回覆: 0
- 觀看: 1161
SecureCRT + SecureFx 8.5.4
复制如下注册码: CRT Name:macenjoy.co Company:macenjoy.co Serial Number:03-51-305953 License Key:AADDZG 2FYCP7 G2KMTJ ZXNCN7 ADXN3S NYUMRZ M75RXA UH1F9Q Issue Date:06-03-2019 Features: FX Name:macenjoy.co Company:macenjoy.co Serial Number:06-38-211554 License Key:ABCBYE 3TYH8Y HFZWAV GZEA48 ABQWVC KM753T DE...
- 週四 6月 20, 2019 10:14 am
- 版面: Nginx
- 主題: Access-Control-Allow-Origin
- 回覆: 0
- 觀看: 159
Access-Control-Allow-Origin
location /vmrecord { if ($request_method = OPTIONS ) { add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Methods "OPTIONS"; add_header Access-Control-Allow-Credentials "true"; add_header 'Access-Control-Allow-Headers' '*,content-type,X-Access-T...
- 週一 5月 06, 2019 9:25 am
- 版面: 測試區
- 主題: test subject
- 回覆: 1
- 觀看: 203
Re: test subject
[syntax="c#"]
public class a {
}
[/syntax]
public class a {
}
[/syntax]
- 週一 3月 18, 2019 4:49 pm
- 版面: CentOS
- 主題: AWS L2TP VPN
- 回覆: 1
- 觀看: 261
AWS IPSec VPN
IPSec User 設定 產生密碼 openssl passwd -1 "YourPassword" 範例: rusli:$1$kV9nPl/I$618a8zwNTYkErzl407ozU.:xauth-psk rusli1:$1$kV9nPl/I$618a8zwNTYkErzl407ozU.:xauth-psk rusli2:$1$kV9nPl/I$618a8zwNTYkErzl407ozU.:xauth-psk rusli3:$1$kV9nPl/I$618a8zwNTYkErzl407ozU.:xauth-psk margaret:$1$kV9nPl/I$618a8...
- 週一 3月 18, 2019 3:45 pm
- 版面: CentOS
- 主題: AWS L2TP VPN
- 回覆: 1
- 觀看: 261
AWS L2TP VPN
ssh -i "rusli_aws_tokyo.pem" centos@ec2-18-182-62-141.ap-northeast-1.compute.amazonaws.com 新增帳戶 /etc/ppp/chap-secrets sudo service pptpd restart "rusli" l2tpd "0204" * "rusli1" l2tpd "0204" * "rusli2" l2tpd "0204" * "rusli3&q...
- 週五 12月 07, 2018 11:02 am
- 版面: IIS
- 主題: Return Of Bleichenbacher's Oracle Threat,ROBOT
- 回覆: 0
- 觀看: 947
Return Of Bleichenbacher's Oracle Threat,ROBOT
Work in progress. Just a list of recommended stuff that has been compiled. Still busy trying to make this 100/100/95/100 (A+) however I am missing functionality within windows at that point in time. Will update with my findings. Run this in Powershell to Disable SSLv3.0 / Poodle and the considered w...
簡體繁體轉換
Translate.7z public static class ChineseConverter { internal const int LOCALE_SYSTEM_DEFAULT = 0x0800; internal const int LCMAP_SIMPLIFIED_CHINESE = 0x02000000; internal const int LCMAP_TRADITIONAL_CHINESE = 0x04000000; /// <summary> /// 使用OS的kernel.dll做為簡繁轉換工具,只要有裝OS就可以使用,不用額外引用dll,但只能做逐字轉換,無法進行詞意...
- 週五 9月 08, 2017 9:30 am
- 版面: Nginx
- 主題: proxy_pass
- 回覆: 0
- 觀看: 190
proxy_pass
修正後記得執行 sudo nginx -t , 若沒問題再執行 sudo nginx -s reload 172.16.12.204 & 172.16.12.202 設定檔 /etc/nginx/default.d/api.conf location /dal/CustomerCare/ { proxy_pass http://CustomerCare_backend/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $prox...
- 週二 9月 05, 2017 11:30 am
- 版面: Nginx
- 主題: Keepalived+nginx 高可用配置 - 双主模式(双机互为主备)
- 回覆: 0
- 觀看: 186
Keepalived+nginx 高可用配置 - 双主模式(双机互为主备)
keepalived+nginx.png 安裝 yum -y install keepalived 兩台要做的設定 cd /etc/keepalived/ vim nginx.sh # 监控nginx进程,若nginx主进程不存在则启动nginx # 若5s后nginx进程还是不存在的话kill掉keepalived进程,防止nginx没运行该主机的keepalived还接管虚拟IP #!/bin/bash status=$(ss -lnp | grep -c 'nginx') if [ ${status} == 0 ]; then systemctl nginx restart sleep...