Skip to content

Instantly share code, notes, and snippets.

@motoso
Created August 7, 2016 07:04
Show Gist options
  • Select an option

  • Save motoso/365d189fae029ef2fc89c1e32171ae22 to your computer and use it in GitHub Desktop.

Select an option

Save motoso/365d189fae029ef2fc89c1e32171ae22 to your computer and use it in GitHub Desktop.
はてなブログ用のnginxのリダイレクト設定
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