在Windows上为localhost设置local.host别名

时间:2014-08-27 15:39:14

标签: node.js everyauth

我正在尝试为我的节点应用设置everyauth。虽然我已经达到了一个我不知道如何完成的步骤。

要求将local.host设置为localhost的别名,但它引用了一些linux文件夹,我正在使用Windows。

这是我难以理解的确切说明。

  

重要 - 某些OAuth提供程序不允许回调localhost,因此您需要创建名为local.host的localhost别名。确保设置/ etc / hosts以使127.0.0.1也与'local.host'相关联。因此,在/ etc / hosts文件中,其中一行将如下所示:'127.0.0.1 localhost local.host'

(source here)

你如何在Windows上实现这一目标?

1 个答案:

答案 0 :(得分:2)

这可以通过编辑hosts文件来完成。以管理员身份打开记事本++(或记事本)。然后点击“打开”,然后选择C:\Windows\System32\drivers\etc\hosts。你会看到:

# Copyright (c) 1993-2006 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# ...
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

127.0.0.1       localhost
::1             localhost

并在最后添加此行:

127.0.0.1       local.host

保存并完成