我有2台电脑,在所有2台电脑中,我都已安装Windows 10 pro X64
来自托管PC的: 我知道Microsoft在IIS上已弃用Python支持
我使用django == 2.1开发我的应用程序。*
我已配置IIS来托管我的Django应用
我经过测试,所有的工作都像灵符。
我已经编辑了我的主机文件,并在system32 / ... etc中的主机末尾添加了一行 像这样:
<ion-header>
<ion-navbar>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-slides>
<ion-slide>
<h4>This is the first slide</h4>
<button type="button" (click)="slideToSlide()">Next</button>
</ion-slide>
<ion-slide>
<h4>This is the second slide</h4>
<button type="button" (click)="slideToSlide()">Next</button>
</ion-slide>
<ion-slide>
<h4>This is the third slide</h4>
<button type="button" (click)="slideToSlide()">Next</button>
</ion-slide>
</ion-slides>
</ion-content>
当我像这样完成IIS中的imake绑定时:
mycurrenthostedpc_ip myapp.extranet
我已将防火墙配置为接受入站和端口80
在iPC上,在托管PC上
myapp.extranet --->> host
mycurrenthostedpc_ip ---->>>> IP address
但是当我签入第二台PC时,像这样连接到我的网络:
http://myapp.extranet/ ---->>> It work well in the hosted pc
如果我要使用此URL(http://myapp.extranet/)访问django应用程序(在另一台计算机内),如何正确配置托管的PC
感谢前进...