缓存网络地址,方便不能上互联网的用户访问互联网地址。
默认密码:admin123
参数USE_REWRITE
设置伪静态开关,没有配置伪静态设置为False
。
<IfModule mod_rewrite.c>
RewriteEngine On
[custom] | |
;不要随意改变关键字,否则会导致出错 | |
;acl4SSR规则 | |
;自动测速:支持 | |
;微软分流:支持 | |
;苹果分流:支持 | |
;增强中国IP段:支持 | |
;增强国外GFW:支持 |
server { | |
listen 80; | |
listen [::]:80; | |
server_name hostloc.eu.org; | |
#SSL Configuration | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
ssl_certificate /ssl/hostloc.eu.org.crt; | |
ssl_certificate_key /ssl/hostloc.eu.org.key; | |
ssl_session_timeout 5m; |
{ | |
"bookSourceComment": "", | |
"bookSourceGroup": "", | |
"bookSourceName": "精华书阁手机版", | |
"bookSourceType": 0, | |
"bookSourceUrl": "https://wap.jhssd.com/", | |
"customOrder": -2085958774, | |
"enabled": true, | |
"enabledCookieJar": false, | |
"enabledExplore": false, |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Mozilla\NativeMessagingHosts\com.8bit.bitwarden] | |
@="C:\\Users\\{Your User Name}\\AppData\\Roaming\\Bitwarden\\browsers\\firefox.json" |
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0] | |
"Component Information"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 | |
"Identifier"="Intel64 Family 6 Model 94 Stepping 8" | |
"Configuration Data"=hex(9):ff,ff,ff,ff,ff,ff,ff,ff,00,00,00,00,00,00,00,00 | |
"ProcessorNameString"="Intel(R) Core(TM)i5-2430M @ 2.40GHz" | |
"VendorIdentifier"="Intel" | |
"FeatureSet"=dword:351b3fff | |
"~MHz"=dword:00000960 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>HTML文本快捷渲染</title> | |
</head> |
This guide will enable systemd
to run as normal under WSL 2. This will enable services like microk8s
, docker
and many more to just work
during a WSL session. Note: this was tested on Windows 10 Build 2004, running Ubuntu 20.04 LTS in WSL 2.
To enable systemd
under WSL we require a tool called systemd-genie
Copy the contents of install-sg.sh
to a new file /tmp/install-sg.sh
:
cd /tmp
#!/bin/bash | |
# transmission远程 登陆用户名 | |
USERNAME="" | |
# transmission 远程 登陆密码 | |
PASSWORD="" | |
# transmission download 目录 | |
DLDIR="/data/Transmission/bt/downloads" | |
# rcone 上传目录 |
@echo off | |
set /p name=请输您的计算机名: | |
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName" /v ComputerName /t reg_sz /d %name% /f | |
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v "NV Hostname" /t reg_sz /d %name% /f | |
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters" /v Hostname /t reg_sz /d %name% /f |