修改nginx配置文件禁止访问该文件 location ~* /xmlrpc.php { deny all; } 如果需要使用 xmlrpc 接口,把xmlrpc.php改名使用即可。
wordpress文章增加版权
使用方法:将下面“版权代码”整体添加到你wordpress主题的functions.php中就好了。 // 正文末尾加本文地址 function add_after_post_content($con...
iptables简单脚本
#!/bin/bash LAN_INTERFACE="eth0" INTERNET_INTERFACE="eth1" LOCAL_IP="192.16...
mvn上传jar包到nexus
修改maven 的 setting.xml 增加nexus账号,插入到 中间 <server> <id>release</id> <username>a...
docker搭建nexus
1. 创建宿主机挂载目录 mkdir –vp /data/nexus 修改目录所属 chown -R 200:200 /data/nexus 运行docker docker run -d --rest...
使用nexus搭建npm本地私人仓库
登录nexus 点击Configuration--Repositories--Create repository创建仓库 创建hosted类型的仓库,选择npm(hosted),输入仓库名称npm-h...