Browse Source

Update README.md

蘭雅sRGB 6 years ago
parent
commit
12913e7b24
1 changed files with 18 additions and 3 deletions
  1. 18 3
      README.md

+ 18 - 3
README.md

@@ -190,13 +190,28 @@ systemctl enable frps
 systemctl enable brook 
 systemctl enable shadowsocks-go
 ```
-### 一键脚本 ss_brook  和 wireguard
+### 一键脚本 ss_brook 和 个人配置
 ```
 # ss_brook脚本 (私人备份恢复脚本)
 wget -qO- git.io/fxQug | bash
 
-# 一键安装wireguard 脚本 Debian 9 (源:逗比网安装笔记)
-wget -qO- git.io/fptwc | bash
+# Debian远程SSH汉字utf-8乱码解决
+apt-get  install locales
+dpkg-reconfigure locales
+
+# 查看默认字符集是否是en_US.UTF-8
+$ vim /etc/default/locale
+LANG=en_US.UTF-8
+
+# vim和bash高亮,tmux 配置
+wget -O .vimrc --no-check-certificate https://raw.githubusercontent.com/hongwenjun/srgb/master/vim/_vimrc
+wget -O .bashrc --no-check-certificate https://raw.githubusercontent.com/hongwenjun/srgb/master/vim/_bashrc
+wget -O .tmux.conf --no-check-certificate https://raw.githubusercontent.com/hongwenjun/tmux_for_windows/master/.tmux.conf
+
+# 修改默认主页地址 和 目录索引显示
+$ vim /etc/nginx/sites-enabled/default
+root /var/www;
+autoindex on;
 
 ```