Commit af43f7d1 authored by Romain Courteaud's avatar Romain Courteaud

SSL should be provided by an http frontend

parent 7b0c4624
0.14 (2011-12-30) 0.14 (2012-01-09)
================= =================
* No change yet * onetimeupload: SSL should be provided by an http frontend [Romain Courteaud]
0.13 (2011-12-30) 0.13 (2011-12-30)
================= =================
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import glob import glob
import os import os
version = '0.14-dev' version = '0.14'
name = 'slapos.toolbox' name = 'slapos.toolbox'
long_description = open("README.txt").read() + "\n" + \ long_description = open("README.txt").read() + "\n" + \
open("CHANGES.txt").read() + "\n" open("CHANGES.txt").read() + "\n"
......
...@@ -104,7 +104,7 @@ def run(config): ...@@ -104,7 +104,7 @@ def run(config):
template = app.open_resource('templates/index.html') template = app.open_resource('templates/index.html')
return template.read() return template.read()
app.run(host=config.host, port=config.port, ssl_context='adhoc') app.run(host=config.host, port=config.port)
def main(): def main():
"Run default configuration." "Run default configuration."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment