diff --git a/dynamicweb/urls.py b/dynamicweb/urls.py index daa7cbee..d7b6a7ba 100644 --- a/dynamicweb/urls.py +++ b/dynamicweb/urls.py @@ -5,12 +5,14 @@ from django.conf.urls.i18n import i18n_patterns from django.conf.urls.static import static from django.conf import settings -from hosting.views import railshosting +from hosting.views import railshosting, nodejshosting, djangohosting from membership import urls as membership_urls urlpatterns = [ url(r'^hosting/', include('hosting.urls', namespace="hosting")), url(r'^railshosting/', railshosting, name="rails.hosting"), + url(r'^nodehosting/', nodejshosting, name="node.hosting"), + url(r'^djangohosting/', djangohosting, name="django.hosting"), url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), url(r'^jsi18n/(?P\S+?)/$', 'django.views.i18n.javascript_catalog'), diff --git a/hosting/templates/hosting/rails.html b/hosting/templates/hosting/rails.html index d8db7a88..cbda1776 100644 --- a/hosting/templates/hosting/rails.html +++ b/hosting/templates/hosting/rails.html @@ -5,7 +5,7 @@
  • Ubuntu 14.04 as the operating system, full root access!

  • -
  • rbenv to let you decide which Ruby version you want to use

  • s +
  • rbenv to let you decide which Ruby version you want to use

  • nginx as the frontend Server (optional with SSL Support)

  • uwsgi to have your application talk to nginx and vice versa

  • PostgreSQL as the database