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.
5 from __future__ import unicode_literals
6 from optparse import make_option
7 from django.core.management.base import BaseCommand
10 class Command(BaseCommand):
11 option_list = BaseCommand.option_list + (
13 help = 'Dumps configuration for NGINX.'
15 def handle(self, **options):