-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
alias website
as application
in wsgi
#449
Conversation
@@ -18,3 +18,4 @@ | |||
from aspen.website import Website | |||
|
|||
website = Website([]) | |||
application = website # many servers look for this name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WSGI servers, because website is a WSGI application
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand your comment. Are you referring to the word "servers" in the comment in this line? What's your predicate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nevermind. I was just trying to make it easier for people who don't know what a WSGI server is and will think that this can be served by Apache.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better in c12b8ab?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome. =)
I don't have merge privileges on repository, so do not wait for me. Looks good. |
alias `website` as `application` in `wsgi`
alias `website` as `application` in `wsgi`
Per #441 (comment)