Displaying 3 results from an estimated 3 matches for "htgroup".
Did you mean:
ntgroup
2017 Dec 04
1
Apache and web content permissions
...--------------------------------------------------
#!/bin/bash
#
# wordpress-update.sh
#
# Mise ? jour automatique de toutes les installations Wordpress
#
# (c) Nicolas Kovacs <info at microlinux.fr>
# WP-CLI doit ?tre install?
WP='/usr/local/bin/wp'
# Apache
HTUSER='apache'
HTGROUP='apache'
# Utilisateur normal
WPUSER='microlinux'
WPGROUP='microlinux'
# Racine du serveur Web
WPROOT='/var/www'
# Identifier les installations Wordpress
WPDIRS=$(dirname $(cd $WPROOT && find . -type f -name 'wp-config.php'))
for WPDIR in $WPDIRS;...
2017 Dec 02
5
Apache and web content permissions
Le 02/12/2017 ? 14:19, Leon Fauster a ?crit :
> I would build a rpm package of wordpress (everything can be defined
> there like permissions etc)
The initial question was: WHAT permissions?
> and disabling the automatic update
> function in wordpress. Build once it can be installed on all (two
> dozen) webservers automagically (local yum repository) ... externe
That would mean
2014 Jan 21
0
Apache Directory Level access control
...are need to be further restricted by the group a user is
assigned to. I have this situation:
<Directory />
AuthType Digest
AuthName ca.harte-lyne
AuthDigestDomain /
AuthDigestProvider file
AuthUserFile /etc/httpd/access.d/.htdigest
AuthGroupFile /var/data/hll_dav/htgroup
Require group staff
AllowOverride None
Order allow,deny
allow from all
Satisfy All
Options Indexes MultiViews
IndexOptions FancyIndexing
AddDefaultCharset UTF-8
</Directory>
<Directory /Private>
Require group management
</Directory>
In this...