Created
August 7, 2016 07:04
-
-
Save motoso/365d189fae029ef2fc89c1e32171ae22 to your computer and use it in GitHub Desktop.
はてなブログ用のnginxのリダイレクト設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name www.letstouch.tech; | |
| return 301 http://www.yak-and-duck.com$request_uri; | |
| access_log /var/log/nginx/www.letstouch.tech.info_access.log main; | |
| error_log /var/log/nginx/www.letstouch.tech.info_error.log; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment