私はAzureに公開しようとしているFlask Webアプリケーションを持っています。私はそれをWebアプリケーションにデプロイし、新しいリソースを作成し、ダウンロードしたユーザーのプロファイルを公開し、ダウンロードしたファイルを使用してVisual Studioから公開しました。すべてがローカルホストが、一度に公開イムがエラーを得ることにスムーズに動作します:AzureにFlask Web Appを公開する
- IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
- IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
- IIS was not able to process configuration for the Web site or application.
- The authenticated user does not have permission to use this DLL.
- The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
私はこれが何を意味するのか知らないがほとんどを持っています。これは私の最初のウェブですので、かなり初心者です。
マイViews.pyは、次のコードでセンナ-win32.exeを呼び出します:
senna_path = os.path.join('senna\\senna-win32.exe')
p = subprocess.Popen(senna_path, stdout=subprocess.PIPE,stdin=subprocess.PIPE)
grep_stdout = p.communicate(input=bytes(va, 'utf-8'))[0]
inList = grep_stdout.decode()
inList = list(inList.splitlines())
私のローカルホスト上の問題なく/エラーを持っているようだが、いただきました!は紺碧に行くかわかりません。
アプリをどのように導入しましたか?それに応じて質問を編集してください。 –
新しいリソースを追加し、ダウンロードプロファイルを公開し、公開プロファイルファイルを使用してVisual Studioから公開しました。あなたが求めているのはこれですか? – Gio
私は何を求めているのではないのですか(またコメントに追加の詳細を掲載するのではなく、あなたの質問を*編集するように求めました)。クラウドサービスに導入しましたか?ウェブアプリにWebアプリケーションの場合、最初にどのように作成しましたか?基本的には、どのようにデプロイし、どのAzureサービスを使用したかについての詳細)。 –