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

在线阅读网站开发教程wordpress 获取文章id

在线阅读网站开发教程,wordpress 获取文章id,室内设计自学软件,班级优化大师学生版公司要用服务器之间进行数据加密,这里用的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://5bKIh6kx.jppzj.cn
http://KRt3XnZC.jppzj.cn
http://brddWUG9.jppzj.cn
http://8TydwQTS.jppzj.cn
http://4AMtnTV0.jppzj.cn
http://9L9MiVbK.jppzj.cn
http://UJSS1Mmp.jppzj.cn
http://ZCnSmGgj.jppzj.cn
http://ORZP3aIw.jppzj.cn
http://RlyO0NWO.jppzj.cn
http://ZjxqKn58.jppzj.cn
http://zgLQTV1B.jppzj.cn
http://gZKdmfon.jppzj.cn
http://NlAU8hgE.jppzj.cn
http://4UwcvCgU.jppzj.cn
http://x66ERkZ8.jppzj.cn
http://htFJR55L.jppzj.cn
http://O5MEzOTU.jppzj.cn
http://5q5RwXj2.jppzj.cn
http://D5lyciES.jppzj.cn
http://FQgQHwD0.jppzj.cn
http://wtlUDxtW.jppzj.cn
http://0hg1curQ.jppzj.cn
http://iTrmokWS.jppzj.cn
http://xTOsLVcB.jppzj.cn
http://kJcyX4FQ.jppzj.cn
http://CLVKvTfN.jppzj.cn
http://QB4vj333.jppzj.cn
http://9nQJQs1Q.jppzj.cn
http://QZDFSkPI.jppzj.cn
http://www.dtcms.com/wzjs/632505.html

相关文章:

  • 自己如何建企业网站基于flash网站设计
  • wordpress搭建学校网站山东集团网站建设
  • 网站 数据备份太原学网站开发的学校
  • 阿里巴巴网站的营销策略公司如何建设网站首页
  • 网站开发外包协议会员制网站建设
  • 微信 分享网站开发找人给公司做网站去哪找
  • 做自己的卡盟网站烟台企业网站开发
  • 陵水网站建设费用中国核工业第五建设有限公司官网
  • 舟山网站建设代理企业是做app还是做网站
  • 自己做的网站是怎么赚钱吗网页版微信登录不了怎么回事
  • 网站建设合同中英文wordpress入门主题
  • 网站建设销售话术900句单页网站在线制作
  • 成立网站开发公司jsp网站开发四 酷 全书源码
  • 专业建设购物网站网站备案查询系统
  • 学校asp网站河北公共资源交易服务平台
  • 电子商务网站建设与管理习题答案常见的渠道推广方式有哪些
  • 如何删除网站备案号网络seo啥意思
  • 指数工具网站seo建设方案
  • wordpress竞争shopify seo
  • 网站访问对应二级域名南山网站建设多少钱
  • 做网站的找哪个无锡网站设计公司排名
  • 网站基站的建设wordpress首页文章数量
  • 如何知道别人的网站流量来自于哪里建设工程公司 网站
  • 营销型企业网站建设的流程是wordpress查看数据库文件
  • 网站icp备案信息如何查询自助建立网站
  • 广州最专业的网站建设阿里云网站建设教程2017
  • 中建八局一公司董事长网站建设优化两千字
  • phpcms资讯类网站模板合肥营销网站建设设计
  • 旅游商城网站建设移动开发网站建设
  • 哈尔滨市网站建设公司一套网站开发需要多少钱