2

Appfogを初めて使用しましたが、HTMLのみのファイルをアップロードする方法に関するドキュメントはありませんでした。使用しているコードを尋ねられたときに何を選択すればよいかわかりません。Python、Flask、Javaなどがオプションとしてリストされていますが、htmlはリストされていません。HTMLコードはどこに置くのですか?デフォルトのwsgi.pyファイルは何をするはずですか?

ありがとう!

4

1 に答える 1

4

HTMLのみのアプリを作成する場合は、ランタイムとしてPHPを使用し、afツールがstandanloneを検出した場合でもスタンドアロンを使用しないでください。

af push                
Would you like to deploy from the current directory? [Yn]: y
Application Name: [APP NAME]
Detected a Standalone Application, is this correct? [Yn]: n #<< NOPE
1: Rails
2: Spring
3: Grails
4: Lift
5: JavaWeb
6: Standalone
7: Sinatra
8: Node
9: PHP
10: Erlang/OTP Rebar
11: WSGI
12: Django
13: Rack
14: Play
Select Application Type: 9 #<< PHP will do
Selected PHP Application
1: AWS US East - Virginia
2: AWS EU West - Ireland
3: AWS Asia SE - Singapore
4: Rackspace AZ 1 - Dallas
5: HP AZ 2 - Las Vegas
Select Infrastructure: 1
Application Deployed URL [your app name.aws.af.cm]: 
Memory reservation (128M, 256M, 512M, 1G, 2G) [128M]: 
How many instances? [1]: 
Bind existing services to 'app name'? [yN]: n #<< dont need services
Create services to bind to 'app name'? [yN]: n #<< no bindings
Would you like to save this configuration? [yN]: n

ルートフォルダにindex.htmlがあることを確認してください

于 2013-01-30T04:48:46.843 に答える