-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
27 lines (21 loc) · 687 Bytes
/
Copy pathapp.py
File metadata and controls
27 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from flask import Flask
from redis import Redis, RedisError
import os
import socket
# Connect to Redis
redis = Redis(host='redis', db=0, socket_connect_timeout=2, socket_timeout=2)
app = Flask(__name__)
@app.route("/")
def hello():
try:
visits = redis.incr('counter')
except RedisError:
visits = '<i>cannot connect to Redis, counter disabled</i>'
html = '<h3>Hello {name}!</h3>' \
'<b>Hostname:</b> {hostname}<br />' \
'<b>Visits:</b> {visits}'
return html.format(name=os.getenv('NAME', 'world'),
hostname=socket.gethostname(),
visits=visits)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80)