A somewhat usable and tested version.
[django-ssify.git] / ssify / management / commands / ssify_nginx_conf.py
1 # -*- coding: utf-8 -*-
2 # This file is part of django-ssify, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
4 #
5 from __future__ import unicode_literals
6 from optparse import make_option
7 from django.core.management.base import BaseCommand
8
9
10 class Command(BaseCommand):
11     option_list = BaseCommand.option_list + (
12     )
13     help = 'Dumps configuration for NGINX.'
14
15     def handle(self, **options):
16         pass