当前位置: 首页 > wzjs >正文

做网站看什么书好如何免费推广网站

做网站看什么书好,如何免费推广网站,企业网站建设公司价格,网站流量数据分析怎么做公司要用服务器之间进行数据加密,这里用的XrayR 我使用的Centos 7。 我这里使用一键脚本安装后,/etc/XrayR目录下没有配置文件。 解决方案 XrayR安装时,系统没有unzip工具,也是会安装失败的,因为Centos7已经停止维…

公司要用服务器之间进行数据加密,这里用的XrayR

我使用的Centos 7。

我这里使用一键脚本安装后,/etc/XrayR目录下没有配置文件。

解决方案

XrayR安装时,系统没有unzip工具,也是会安装失败的,因为Centos7已经停止维护了,得换个数据源。

vi /etc/yum.repos.d/CentOS-Base.repo

把下面的配置文件,替换掉源文件。 

[base]
name=CentOS-7 - Base
baseurl=http://vault.centos.org/7.9.2009/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7[updates]
name=CentOS-7 - Updates
baseurl=http://vault.centos.org/7.9.2009/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7[extras]
name=CentOS-7 - Extras
baseurl=http://vault.centos.org/7.9.2009/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

保存退出后,再执行:

yum clean all
yum makecache
yum install unzip -y

下面所有命令都用 root 直接复制粘贴即可:

cat >/etc/yum.repos.d/CentOS-Base.repo <<'EOF'
[base]
name=CentOS-7 - Base
baseurl=http://vault.centos.org/7.9.2009/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7[updates]
name=CentOS-7 - Updates
baseurl=http://vault.centos.org/7.9.2009/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7[extras]
name=CentOS-7 - Extras
baseurl=http://vault.centos.org/7.9.2009/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
EOFyum clean all
yum makecache
# 把缺的工具一次性补上
yum -y install wget curl unzip tar

删除残缺目录,重新跑官方一键脚本:

rm -rf /usr/local/XrayR
bash <(curl -Ls https://raw.githubusercontent.com/XrayR-project/XrayR-release/master/install.sh)

OK完成。 

config.yml配置示例

Log:Level: none # Log level: none, error, warning, info, debug AccessPath: # /etc/XrayR/access.LogErrorPath: # /etc/XrayR/error.log
DnsConfigPath: # /etc/XrayR/dns.json # Path to dns config, check https://xtls.github.io/config/dns.html for help
RouteConfigPath: # /etc/XrayR/route.json # Path to route config, check https://xtls.github.io/config/routing.html for help
InboundConfigPath: # /etc/XrayR/custom_inbound.json # Path to custom inbound config, check https://xtls.github.io/config/inbound.html for help
OutboundConfigPath: # /etc/XrayR/custom_outbound.json # Path to custom outbound config, check https://xtls.github.io/config/outbound.html for help
ConnectionConfig:Handshake: 4 # Handshake time limit, SecondConnIdle: 10 # Connection idle time limit, SecondUplinkOnly: 2 # Time limit when the connection downstream is closed, SecondDownlinkOnly: 4 # Time limit when the connection is closed after the uplink is closed, SecondBufferSize: 64 # The internal cache size of each connection, kB 
Nodes:-PanelType: "V2board" # Panel type: SSpanel, NewV2board, V2board, PMpanel, ProxypanelApiConfig:ApiHost: "http://xin.students.xin"ApiKey: "V2boardV2boardV2board"NodeID: 1NodeType: Shadowsocks # Node type: V2ray, Trojan, Shadowsocks, Shadowsocks-PluginTimeout: 30 # Timeout for the api requestEnableVless: false # Enable Vless for V2ray TypeEnableXTLS: false # Enable XTLS for V2ray and TrojanSpeedLimit: 0 # Mbps, Local settings will replace remote settings, 0 means disableDeviceLimit: 0 # Local settings will replace remote settings, 0 means disableRuleListPath: # /etc/XrayR/rulelist Path to local rulelist fileControllerConfig:ListenIP: 0.0.0.0 # IP address you want to listenSendIP: 0.0.0.0 # IP address you want to send pacakageUpdatePeriodic: 60 # Time to update the nodeinfo, how many sec.EnableDNS: false # Use custom DNS config, Please ensure that you set the dns.json wellDNSType: AsIs # AsIs, UseIP, UseIPv4, UseIPv6, DNS strategyDisableUploadTraffic: false # Disable Upload Traffic to the panelDisableGetRule: false # Disable Get Rule from the panelDisableIVCheck: false # Disable the anti-reply protection for ShadowsocksDisableSniffing: false # Disable domain sniffing EnableProxyProtocol: falseAutoSpeedLimitConfig:Limit: 0 # Warned speed. Set to 0 to disable AutoSpeedLimit (mbps)WarnTimes: 0 # After (WarnTimes) consecutive warnings, the user will be limited. Set to 0 to punish overspeed user immediately.LimitSpeed: 0 # The speedlimit of a limited user (unit: mbps)LimitDuration: 0 # How many minutes will the limiting last (unit: minute)GlobalDeviceLimitConfig:Enable: false # Enable the global device limit of a userRedisAddr: 127.0.0.1:6379 # The redis server addressRedisPassword: YOUR PASSWORD # Redis passwordRedisDB: 0 # Redis DBTimeout: 5 # Timeout for redis requestExpiry: 60 # Expiry time (second)EnableFallback: false # Only support for Trojan and VlessFallBackConfigs:  # Support multiple fallbacks-SNI: # TLS SNI(Server Name Indication), Empty for anyAlpn: # Alpn, Empty for anyPath: # HTTP PATH, Empty for anyDest: 80 # Required, Destination of fallback, check https://xtls.github.io/config/fallback/ for details.ProxyProtocolVer: 0 # Send PROXY protocol version, 0 for dsableCertConfig:CertMode: dns # Option about how to get certificate: none, file, http, dns. Choose "none" will forcedly disable the tls config.RejectUnknownSni: false # Reject unknown SNICertDomain: "niuyuenoe.guangdongxjl.cfd" # Domain to certCertFile: /etc/XrayR/cert/node1.test.com.cert # Provided if the CertMode is fileKeyFile: /etc/XrayR/cert/node1.test.com.keyProvider: alidns # DNS cert provider, Get the full support list here: https://go-acme.github.io/lego/dns/Email: test@me.comDNSEnv: # DNS ENV option used by DNS providerALICLOUD_ACCESS_KEY: aaaALICLOUD_SECRET_KEY: bbb

http://www.dtcms.com/wzjs/403042.html

相关文章:

  • 汕头企业网站建设百度快照客服人工电话
  • 邯郸做网站熊掌号优化方案的格式及范文
  • 南京雨花台区做网站怎么创建自己的网站平台
  • 网站后端架构如何做2022最火营销方案
  • 如何不用代码做网站中国培训网是国家公认的吗
  • 详细的网站规划建设方案服务器最新的全国疫情数据
  • 网站关键词优化软件nba最新交易
  • 政府门户网站建设思考源码交易平台
  • 河南建设工程信息网 建议访问中项网阳泉seo
  • 怎么用ps做网站首页图片尺寸二级域名和一级域名优化难度
  • 深圳网站建设价格是多少seo查询排名软件
  • wordpress 安装500seo技术是什么意思
  • 中山网站开发招聘seo代码优化包括哪些
  • 中山网站建设文化培训课程设计方案
  • 哪些网站属于b2b模式微信管理系统登录
  • 烟台专业做网站的公司今日最近的新闻大事10条
  • 政府机关单位网站建设哈市今日头条最新
  • 如何建设 营销型 网站网页设计素材网站
  • 动态网站做什么好看网站推广的基本方法为
  • 如何建立网站教程产品如何做市场推广
  • 网站开发私人培训想开广告公司怎么起步
  • 做网站需要公司北京网站推广营销服务电话
  • 惠州哪个房地产网站做的比较好百度搜索榜
  • 要修改wordpress目录下的文件权限首页关键词排名优化
  • 兖州网站建设百度视频seo
  • 免费网站建设公司电脑零基础培训学校
  • 两学一做11月答题网站杭州关键词推广优化方案
  • 商城网站设计需要哪些技术google play下载
  • 网站案例模版电脑培训中心
  • 全国信息企业公示网官网查询百度起诉seo公司