美文网首页
第二章:域名服务器及备案

第二章:域名服务器及备案

作者: 入秋未凉的海 | 来源:发表于2017-08-26 23:53 被阅读0次
ssh root@公网ip地址
ubuntn升级更新
sudo apt-get update && sudo apt-get upgrade
安装nginx
apt-get install nginx
service nginx start
查看硬盘使用情况
df -h
配置zsh快捷访问服务器
vi ~/.zshrc
//添加
alias ssh_binperson="ssh root@119.23.48.128"

source .zshrc

ssh_binperson
iptables
iptables -F
vi /etc/iptables.up.rules
*filter

-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

-A OUTPUT -j ACCEPT

-A INPUT -p tcp --dport 443 -j ACCEPT
-A INPUT -p tcp --dport 80 -j ACCEPT

-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT

-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT

COMMIT
iptables-restore < /etc/iptables.up.rules
激活防火墙
ufw enable
安装服务器模块
sudo apt-get update
sudo apt-get install vim openssl build-essential libssl-dev wget curl git
安装node.js
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
nvm install node
nvm use node
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
npm i pm2 webpack gulp grunt-cli -g
增加系统文件监控数
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
移除apache
apache2 stop
apt-get remove apache2
sudo apt-get update
nginx 配置
cd /etc/nginx/
cd conf.d/
vi binperson-3000.conf
nginx -t
cd ../
vi nginx.conf
nginx -s reload
upstream cookie {
  server 127.0.0.1:3000;
}

server {
  listen 80;
  server_name 119.23.48.128;
  location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Nginx-Proxy true;

    proxy_pass http://cookie;
    proxy_redirect off;
  }
}
去掉Server:nginx/1.4.6 (Ubuntu)版本
cd /etc/nginx
vi nginx.conf
server_tokens off;//打开
service nginx reload

相关文章

  • 阿里云主机购买及网站域名绑定教程

    网站上线步骤 购买云服务器主机购买域名ICP备案系统安装及环境配置网站安装部署域名解析及端口映射 购买云服务器主机...

  • 阿里云主机购买及网站域名绑定教程

    网站上线步骤 购买云服务器主机购买域名ICP备案系统安装及环境配置网站安装部署域名解析及端口映射 购买云服务器主机...

  • 域名交易平台快名网即将关站,有域名的朋友抓紧时间转出!

    快名网,也是一家知名的域名服务平台,主打阿里云备案域名、腾讯云备案域名、企业备案域名及老域名出售交易。 近日宋九九...

  • 选服务器

    1.首选服务器为国外或者香港不要域名备案,国内的服务器需要域名备案比较麻烦,系统为ubuntu 或者 centos...

  • 手把手搭建个人博客(三)——域名备案

    1、在哪里备案? 对于服务器在国内的的一级域名都需要做备案,在哪里买的域名、服务器就在哪里备案,比如我是在阿里云购...

  • 服务器知识点

    1.域名实名认证和网站备案 域名有一个叫做实名认证,而不是域名备案。域名要实名认证之后才能,映射ip(服务器) 备...

  • 国内免备案服务器虚拟主机

    国内免备案服务器,域名被墙用国内免备案CDN节点,稳定解决域名被墙问题,提供国内免备案主机 备案是目前国内的一个最...

  • 服务器部署过程

    服务器部署过程 步骤 购买自己的域名 域名备案 购买服务器 配置服务器应用环境 项目远程部署和发布与更新 购买域名...

  • todolist

    网站建站经验谈域名-云服务器-云主机-域名备案-上传本地文件到服务器-配置IIS服务器-绑定www域名 本地服务器...

  • 香港服务器的选用注意事项

    香港服务器不同于国内服务器,是免备案服务器,可以直接域名访问,省掉域名备案的流程。这样的话,网站程序一部署就能够快...

网友评论

      本文标题:第二章:域名服务器及备案

      本文链接:https://www.haomeiwen.com/subject/ucrydxtx.html