우도비
http://blog.tjsrms.me/nginx-www-%EC%9E%90%EB%8F%99%EC%9C%BC%EB%A1%9C-%EB%B6%99%EC%9D%B4%EA%B8%B0/ 메인 주소를 이용하여http://www.aaa.com과http://aaa.com가 같은 사이트일때 Nginx WWW 도메인으로 자동으로 붙이는 방법입니다. 구글의 웹컨텐츠 작성 가이드 라인에 따르면 301 리다이렉션을 사용하여 선호 도메인을 설정하는 방법을 권장하고 있습니다. 12345server { listen 80; server_name example.com; return 301 http://www.example.com$request_uri;}301리다이렉션을 사용하는 이유는아래 구글 웹마스터 도구 Supoort 페이지에서 자세..
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-16-04How To Set Up a Firewall with UFW on Ubuntu 16.04PostedDecember 22, 2016 59.5kviews FIREWALL NETWORKING SECURITY UBUNTU UBUNTU 16.04IntroductionUFW, or Uncomplicated Firewall, is an interface to iptables that is geared towards simplifying the process of configuring a firewall. While iptables is a so..
https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04128 How To Install Linux, Nginx, MySQL, PHP (LEMP stack) in Ubuntu 16.04PostedApril 21, 2016 371.1kviews LEMP MYSQL PHP NGINX UBUNTU UBUNTU 16.04IntroductionThe LEMP software stack is a group of software that can be used to serve dynamic web pages and web applications. This is an acron..