Don't use https for the Windows installer

This is a temporary solution to the problem of installing Meteor on Windows Server 2008 and Windows Server 2012.

On Windows Server, the requests using TLS 1.1 and TLS 1.2 are disabled by default.
This commit is contained in:
Slava Kim
2015-03-11 17:15:52 -07:00
parent 79e0faf2d4
commit 498bacdb99

View File

@@ -23,6 +23,6 @@
<?define METEOR_PkgFileName = "meteor-bootstrap-os.windows.x86_32.tar.gz"?>
<?define METEOR_PkgDwnUrl = "https://s3.amazonaws.com/com.meteor.static/packages-bootstrap/__METEOR_RELEASE__/meteor-bootstrap-os.windows.x86_32.tar.gz"?>
<?define METEOR_PkgDwnUrl = "http://s3.amazonaws.com/com.meteor.static/packages-bootstrap/__METEOR_RELEASE__/meteor-bootstrap-os.windows.x86_32.tar.gz"?>
</Include>