Przeglądaj źródła

Fix static file serving.

Stefano Cossu 2 lat temu
rodzic
commit
c5671e7933

+ 5 - 2
transliterator/rest_api.py

@@ -7,11 +7,14 @@ from transliterator.trans import transliterate
 
 
 def create_app():
+    flask_env = environ.get("TXL_APP_MODE", "production")
     app = Flask(__name__)
     app.config.update({
-        "ENV": environ.get("TXL_APP_MODE", "production"),
+        "ENV": flask_env,
         "SECRET_KEY": environ["TXL_FLASK_SECRET"],
-        "USE_X_SENDFILE": True,
+        # Prod requires the application to be behind Nginx, or static files
+        # won't be served directly by Flask using this option.
+        "USE_X_SENDFILE": flask_env == "production",
         "JSON_AS_ASCII": False,
         "JSONIFY_PRETTYPRINT_REGULAR": True,
     })

+ 2 - 0
transliterator/templates/index.html

@@ -13,6 +13,8 @@
             </select>
             <label class="label-inline" for="r2s">Roman-to-Script</label>
             <input type="checkbox" id="r2s" name="r2s">
+        </fieldset>
+        <fieldset>
             <input class="button-primary" type="submit" value="Transliterate!">
         </fieldset>
     </form>