Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定如何配置我的不变安装来提供网页
当我做:
>> lein immutant run >> curl http://127.0.0.1:8080/testing
它有效,但是
>> curl http://172.20.10.3:8080/testing
这是我计算机上的替代 ip 没有。
我们在哪里可以配置这个选项?
Ankur 接近正确 - Immutant 默认绑定到 localhost,因此您需要使用该-b选项指定不同的绑定地址。指定0.0.0.0将绑定到每个接口,但您不会将端口传递给-b. 因此,正确的调用将是:
-b
0.0.0.0
lein immutant run -b 0.0.0.0
使用以下命令运行它:
lein immutant run -b 0.0.0.0:8080