I have hgweb.wsgi setup on an ubuntu server under apache2. Furthermore I have basic authing using the apache2 htpasswd approach. This all works nicely. However, we want to control what each user have access to and ACL seems to be the best approach. So inside the repos .hg folder I've created a hgrc and modified it according to the documentation for getting ACL up and running ( I've also enabled the extension ). The problem is I get no indication that the hgrc is used at all. If I add [ui] debug = true I still get nothing from the remote client. Sadly I'm not quite sure how to go about debugging this so any help would be much appreciated.
Related Questions in MERCURIAL
- Process 'command 'C:\Program Files\Java\jdk-17.06\bin\java.exe'' finished with non-zero exit value 1
- Forced to iterate over Collection<String> using Object?
- IntelliJ new settings sync
- Why does Intellij go to a blank page when switching to a new changelist?
- Building a cross-build sbt project in Intellij
- pox.xml dependencies are not effective, project gives many <some thing which is defined as dependency> does not exist errors. IntelliJ WS Corrupted?
- IntelliJ IDEA does not recognize properties file
- Search File by name using Search Everywhere from a specific folder: IntelliJ IDEA
- Cannot start IntelliJ (2017.2.2)
- Intellij Android Project Gradle
Related Questions in APACHE2
- Process 'command 'C:\Program Files\Java\jdk-17.06\bin\java.exe'' finished with non-zero exit value 1
- Forced to iterate over Collection<String> using Object?
- IntelliJ new settings sync
- Why does Intellij go to a blank page when switching to a new changelist?
- Building a cross-build sbt project in Intellij
- pox.xml dependencies are not effective, project gives many <some thing which is defined as dependency> does not exist errors. IntelliJ WS Corrupted?
- IntelliJ IDEA does not recognize properties file
- Search File by name using Search Everywhere from a specific folder: IntelliJ IDEA
- Cannot start IntelliJ (2017.2.2)
- Intellij Android Project Gradle
Related Questions in ACL
- Process 'command 'C:\Program Files\Java\jdk-17.06\bin\java.exe'' finished with non-zero exit value 1
- Forced to iterate over Collection<String> using Object?
- IntelliJ new settings sync
- Why does Intellij go to a blank page when switching to a new changelist?
- Building a cross-build sbt project in Intellij
- pox.xml dependencies are not effective, project gives many <some thing which is defined as dependency> does not exist errors. IntelliJ WS Corrupted?
- IntelliJ IDEA does not recognize properties file
- Search File by name using Search Everywhere from a specific folder: IntelliJ IDEA
- Cannot start IntelliJ (2017.2.2)
- Intellij Android Project Gradle
Related Questions in HGWEB
- Process 'command 'C:\Program Files\Java\jdk-17.06\bin\java.exe'' finished with non-zero exit value 1
- Forced to iterate over Collection<String> using Object?
- IntelliJ new settings sync
- Why does Intellij go to a blank page when switching to a new changelist?
- Building a cross-build sbt project in Intellij
- pox.xml dependencies are not effective, project gives many <some thing which is defined as dependency> does not exist errors. IntelliJ WS Corrupted?
- IntelliJ IDEA does not recognize properties file
- Search File by name using Search Everywhere from a specific folder: IntelliJ IDEA
- Cannot start IntelliJ (2017.2.2)
- Intellij Android Project Gradle
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
To make sure that a
.hg/hgrcfile in a repository is being consulted add something noticable to the[web]section like:If you don't see those in the web interface your
.hg/hgrcisn't being consulted, and the most common reason for that is -- permissions. Remember that the.hg/hgrchas to owned by a user or group that is trusted by the webserver user (usuallyapacheorwww-dataor similar). If apache is running under the user apache then chown the .hg/hgrc file over to apache for ownership -- root won't do and htpasswd user is irrelevant.If that file is being consulted then you need to start poking around in the apache error logs. Turning on debug and verbose will put more messages into the apache error log, not into the remote client's output.