Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
bpo-32628: support DirectoryIndex for http server#5308
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Conversation
SimpleHTTPRequestHandler is hard-coded to only use index.html or index.htmas files to serve for a request for a directory. With this change, this listcan be modified, ala the DirectoryIndex directive of an Apache web server.
the-knights-who-say-ni commentedJan 25, 2018
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed thePSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please followthe steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
I signed my CLA a few days ago - bugs.python.org now shows it as processed. Could a dev update the label? |
Could you amend versionadded, please? Lets try for 3.11. |
AlexWaygood commentedMay 8, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
@MaxwellDupre, just so you know, the beta release for 3.11was released today, meaning 3.11 is now in feature freeze. 3.11 is now only accepting bugfixes, meaning new features can now only be added to 3.12. |
I got a somewhat skeptical review in#76809 so I'm not sure what the path forward might be. Happy to update it to 3.12 but I don't know that it's ever going to make it in, even updated. |
AlexWaygood commentedMay 8, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
I am neither a core developer (I'm a triager) nor a frequent user of the |
This PR is stale because it has been open for 30 days with no activity. |
The following commit authors need to sign the Contributor License Agreement: |
This PR is stale because it has been open for 30 days with no activity. |
Uh oh!
There was an error while loading.Please reload this page.
SimpleHTTPRequestHandler is hard-coded to only use index.html or index.htm
as files to serve for a request for a directory. With this change, this list
can be modified, ala the DirectoryIndex directive of an Apache web server.
https://bugs.python.org/issue32628