Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...
|
Making httpd work with trac and svn: msg#00062
|
Subject: |
Making httpd work with trac and svn |
Hi,
I'm using httpd, trac, and svn on FC4 with svnmailer providing svn
commit notifications.
I've found I have to add the following local policies to allow this
combination to work:
# Needed to allow httpd to send ticket notifications via
# direct connection to smtp port as httpd user
allow httpd_t smtp_port_t:tcp_socket name_connect;
# Needed to allow svnmailer to execute and send commit notifications
# using sendmail as httpd user
allow httpd_t trac_var_t:file execute;
allow httpd_t trac_var_t:file execute_no_trans;
allow restorecon_t devpts_t:chr_file getattr;
allow httpd_t sbin_t:lnk_file read;
Is there a better way to do this, i.e. without adding these missing TEs?
R.
|
| |