Created
June 1, 2023 04:14
-
-
Save SiddheshKukade/7bd091d32dfec43cf9b5270fc8593a99 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Hello, world!</title> | |
<link rel="stylesheet" type="text/css" href="/css/style.css"> | |
</head> | |
<body> | |
<h1>Hello, world!</h1> | |
<p> | |
This is a simple static HTML file that will be served from Google App | |
Engine. | |
</p> | |
</body> | |
</html> | |
runtime: python27 | |
api_version: 1 | |
threadsafe: true | |
handlers: | |
- url: / | |
static_files: www/index.html | |
upload: www/index.html | |
- url: /(.*) | |
static_files: www/\1 | |
upload: www/(.*) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment