Questions tagged [authorization]

156 questions
1
vote
0 answers

Getting apache to use ldap group and filesystem group information

We have an Apache server which serves out of a particular directory, and just supplies a listing of files. From this directory, each subdirectory is owned by a certain group of users (at the filesystem level). User groups are determined by a…
Angelo
  • 132
  • 1
  • 8
1
vote
1 answer

Windows file server access control by device

I'm trying to build a system where access to certain resources (file shares) in Windows Server, is limited not only by the username (in a Active Directory domain), but also by the client machine. So far, I haven't found a good way to do this; adding…
Ori Shavit
  • 11
  • 1
  • 1
1
vote
0 answers

Apache Kerberos/LDAP: A required input parameter could not be read: An invalid name was supplied (, Unknown error)

(Debian Squeeze) I have Apache authenticating via Kerberos - that works fine. Now I want to restrict the site to a single group only, so I need to add LDAP authorization. I enabled authnz_ldap and edited the apache config. When I use the "Require…
DrStalker
  • 6,676
  • 24
  • 76
  • 106
1
vote
3 answers

Subversion all or nothing access to repo tree

I'm having some problems setting up access to my Subversion repositories on a Linux server. The problem is that I can only seem to get an all-or-nothing structure going. Either everyone gets read access to everything or noone gets read or write…
Glader
  • 113
  • 4
1
vote
3 answers

How can I disable Kerberos authentication for only the root of my site?

I have Kerberos-based authentication and I want to disable it on only root url: http://mysite.com/. And I want it to continue to work fine on any other page like http://mysite.com/page1. I have such things in my .htaccess: AuthType Kerberos AuthName…
petRUShka
  • 293
  • 1
  • 5
  • 16
1
vote
0 answers

SVN server authentication on Mac - users are not recognized

We have a anomaly here, trying to set up SVN authentication. Here is apache configuration: DAV svn SVNPath /svn/repo_main AuthType Basic AuthName "svn" AuthzSVNAccessFile /svn/repo_main/conf/authz Require valid-user …
Dmitry
  • 117
  • 7
1
vote
2 answers

Protecting images from direct access by checking current PHP session with mod_rewrite

I'm working on a solution to a problem where users could potentially access images (in this case PDF files) stored in a folder off the server root. Normally, my application validates users through PHP scripts and sessions. What isn't happening right…
a coder
  • 719
  • 4
  • 20
  • 37
1
vote
1 answer

SVN SASL Commit - Authorisation failed

I've been attempting to setup our SVN server to be accessible by both DAV SVN through Apache and now the SVN:// protocol (for better performance) root@svnvm:~# svnserve --foreground -d --foreground -R --config-file /svn/svnserve.conf -r…
Thermionix
  • 907
  • 2
  • 15
  • 28
1
vote
1 answer

Configure auth_basic with Nginx and Passenger

I'm trying to set up a basic authentication with Nginx. My server configuration look like that: server { listen 80; server_name DOMAIN; root /var/www/web-front-dev/current/public; error_log /var/log/nginx/web-front-dev-error.log; …
Vincent Peres
  • 131
  • 1
  • 5
1
vote
1 answer

How to authorize user for a subfolder

Using Windows Server 2003, I would like to give a user full access to a subfolder. Let´s say I have folder A with subfolders B1 and B2. I observed that when granting authorization to B1, the user cannot access A. This is bad because user can´t reach…
1
vote
2 answers

I get a message denying access when I try to delete a file that I created

OS client: Windows7 professional OS server: Windows 2003 I create a new file in my documents folder (on the server). When I try to delete the file later, I get the following error: Cannot delete the file. You need permissions from domain\my own…
jao
  • 391
  • 2
  • 12
  • 28
1
vote
1 answer

Can Apache be integrated with 3rd party cookie session authentication/authorization?

I'd like to configure Apache to serve files directly from the file system but authenticate/authorize users. How can Apache be configured so it calls my auth middleware? Basically: 1) Redirect to login if user is not authenticated. Check session…
1
vote
1 answer

Authorisation in mod_wsgi

I have the following setup, WSGIScriptAlias /i C:/Project/Scripts/hello.wsgi WSGIScriptAlias /hello C:/Project/Scripts/hello.wsgi Order deny,allow Allow from all AuthType Basic …
Filipe Pinheiro
  • 157
  • 1
  • 7
1
vote
1 answer

Grant Sharepoint Access to all employees

What's the easiest way to grant access to all the employees of our company to sharepoint portal. There are some general sites which all employees have read access. So Do I have to create an AD group for all employees and add to the site or is there…
Satish
  • 227
  • 3
  • 4
  • 9
1
vote
1 answer

Varnish with Basic auth returns 401

I've tried to configure Varnish on server which has Basic Auth authentication by using these solutions: https://stackoverflow.com/a/40424168/7202171 https://blog.tenya.me/blog/2011/12/14/varnish-http-authentication/#comment-2882579903 but it…