Day: October 20, 2023

IIS Rewrite-http_toHttps-Add_WWW

<?xml version="1.0" ?> <rules> <clear/> <rule name="Add_WWW" stopProcessing="true"> <match url="^(.*)$"/> <conditions> <add input="{HTTP_HOST}" pattern="^(?!www.)(.*)$"/> </conditions> <action type="Redirect" url="http://www.{C:0}{PATH_INFO}" redirectType="Permanent"/> </rule> <rule name="http_toHttps" stopProcessing="true"> <match url="(.*)"/> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true"/>…

Continue Reading

完美DSM-CentOS

修改默认的webstation端口为8080和8443,并启动容器 cd /usr/syno/share/nginx sed -i "s/80/8080/g" server.mustache sed -i "s/80/8080/g" DSM.mustache sed -i "s/80/8080/g" WWWService.mustache sed -i "s/443/8443/g" server.mustache sed -i "s/443/8443/g" DSM.mustache sed -i "s/443/8443/g" WWWService.mustache docker run -itd…

Continue Reading

群晖释放端口80、443,并修改默认5000、5001

一、 释放80、443端口占用 #ssh登陆nas sudo -i #切换至root用户 #检查端口占用情况 netstat -anp |grep 80 netstat -anp |grep 443 #能确定端口被nginx占用 cd /usr/syno/share/nginx #文件备份,也可以不备份 cp server.mustache server.mustache_`date +%Y%m%d` cp DSM.mustache DSM.mustache_`date +%Y%m%d` cp WWWService.mustache WWWService.mustache_`date…

Continue Reading

DSM7修改登录页样式及备案信息

SSH到DSM 以Robert用户登录 sudo -i 输入同样的密码 /////////////////////////////////////////以下是具体操作 vi /usr/syno/synoman/webman/desktop.html /////////////////////////////////////////以下是具体操作 {JSFILE}下面插入js引用 <script type="text/javascript" src="webman/robert.js"></script> /////////////////////////////////////////以下是具体操作 vi /usr/syno/synoman/webman/robert.js /////////////////////////////////////////以下是具体操作 将js内容粘贴进入 /////////////////////////////////////////以下是js文件内容 window.onload = function () { setTimeout("changeFooter()", 1000); } function changeFooter() {…

Continue Reading