Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 753961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:57:28+00:00 2026-05-14T14:57:28+00:00

A problem that I stumbled upon recently, and, even though I solved it, I

  • 0

A problem that I stumbled upon recently, and, even though I solved it, I would like to hear your opinion of what correct/simple/adopted solution would be.

I’m developing website using Django + python. When I run it on local machine with “python manage.py runserver”, local address is http://127.0.0.1:8000/ by default.

However, on production server my app has other url, with path – like “http://server.name/myproj/“

I need to generate and use permanent urls. If I’m using {% url view params %}, I’m getting paths that are relative to / , since my urls.py contains this

urlpatterns = patterns('',
 (r'^(\d+)?$', 'myproj.myapp.views.index'),
 (r'^img/(.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT + '/img' }),
 (r'^css/(.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT + '/css' }),
)

So far, I see 2 solutions:

  1. modify urls.py, include ‘/myproj/’ in case of production run
  2. use request.build_absolute_uri() for creating link in views.py or pass some variable with ‘hostname:port/path’ in templates

Are there prettier ways to deal with this problem? Thank you.

Update: Well, the problem seems to be not in django, but in webfaction way to configure wsgi. Apache configuration for application with URL “hostname.com/myapp” contains the following line

WSGIScriptAlias / /home/dreamiurg/webapps/pinfont/myproject.wsgi

So, SCRIPT_NAME is empty, and the only solution I see is to get to mod_python or serve my application from root. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T14:57:28+00:00Added an answer on May 14, 2026 at 2:57 pm

    You shouldn’t need to do anything special. Django honours the SCRIPT_NAME environment variable that is set by mod_wsgi when you serve a Django site other than from the root, and prepends it to the url reversing code automatically.

    If you’re using mod_python (you shouldn’t be), you may need to set django.root in your Apache configuration.

    Updated I suspect this is due to the way that Webfaction serves Django sites via a proxy instance of Apache – this instance has no knowledge of the actual mount point as determined by Webfaction’s control panel.

    In this case, you’ll probably need to set SCRIPT_NAME manually in your .wsgi script. I think this should work:

    _application = django.core.handlers.wsgi.WSGIHandler()
    
    def application(environ, start_response):
        os.environ['SCRIPT_NAME'] = '/myproj/'
        return _application(environ, start_response)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 402k
  • Answers 402k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer When I've had that happen to me, it's because I've… May 15, 2026 at 4:51 am
  • Editorial Team
    Editorial Team added an answer are you looking for something like this SELECT * FROM… May 15, 2026 at 4:51 am
  • Editorial Team
    Editorial Team added an answer On the server end, you need to specify the login… May 15, 2026 at 4:51 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.