Celestino Rey 11 months ago
parent
commit
a0de28fb3a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      mysite/settings.py
  2. +1
    -1
      polls/views.py

+ 1
- 1
mysite/settings.py View File

@ -25,7 +25,7 @@ SECRET_KEY = 'django-insecure-5@k8%e-(*v+8nb1)dvie3_$$ol=3747i)x^n3%j9pg@9j$=b)_
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = ["djangotutorial-djangotutorial.apps.ocp-cluster.reymota.lab"]
ALLOWED_HOSTS = [".ocp-cluster.reymota.lab"]
# Application definition # Application definition


+ 1
- 1
polls/views.py View File

@ -2,4 +2,4 @@ from django.http import HttpResponse
def index(request): def index(request):
return HttpResponse("Hello, world. You're at the polls index.")
return HttpResponse("¡Hola, mundo. Estamos en la vista index. Y he hecho un cambio")

Loading…
Cancel
Save