// // Really Important Safety Tip: --> DO NOT LEAVE ANY WHITE // SPACE AFTER THE CLOSING PHP TAG AT THE END OF THIS FILE! // // Doing so will really confuse the software and cause // 1) cookies to fail and 2) HTML page headers to fail // which will give you some preally hard-to-debug problems. // Why? PHP is a *pre-processor* -- anything that's not PHP gets // emitted as part of the HTML stream and processed by the browser, // so white space is meaningful! // // // GForge hostnames // // Hostnames should be fully qualified domain names (FQDNs); using short names // would be prettier but would stop you from distributing your SourceForge // implementation across multiple domains. // // Of course, if you have a lot of machines serving a particular purpose // such as FTP or for shell accounts, the "hostname" here might be in // reality an addr_list of machines that is serviced by a round-robin // mechanism or something fancy like a local-director. // // The default GForge domain // this is used where ever the "naked" form of the GForge domain // might be used. E.g., "mailto:admin@gforge.net" $sys_default_domain = "gforge.company.com"; //$sys_fallback_domain = "gforge2.company.com"; //$sys_internal_network = '192.168.1.'; // Machine that hosts CVS $sys_cvs_host = "cvs.gforge.company.com"; // Force the use of a single cvs host instead of cvs.project.domain.com // Set to 1 to use cvs.domain.com:/cvsroot/project for all projects // Set to 0 to use cvs.project.domain.com:/cvsroot/project $sys_cvs_single_host = 1; // Machine used for downloading sources/packages $sys_download_host = "download.gforge.company.com"; // Machine used for uploading sources/packages $sys_upload_host = "upload.gforge.company.com"; // Machine(s) that host users' shell accounts // N.B. to the SourceForge Crew: What's the difference between the user // host and the shell host? They are clearly two different hostnames // in the source code, but they seem to serve the same purpose..? $sys_shell_host = "shell.gforge.company.com"; $sys_users_host = "users.gforge.company.com"; // Machine that hosts docs (such as the FAQs and the various software // licenses (*BSD, [L]GPL, etc.). You REALLY want this to be the same // machine that the GForge code is running on because all of the // PHP makes reference to these documents in terms of relative paths that // are part of the GForge code tree. $sys_docs_host = "gfdocs.gforge.company.com"; // Machine that hosts the GForge mailing lists (This could also be // the mail host if you have enough horsepower & bandwidth) $sys_lists_host = "lists.gforge.company.com"; // Domain Name Servers // N.B.: Use terminated FQDNs here (with the final ".") so the resolver // doesn't attempt to recurse in the case of a slightly broken DNS // configuration $sys_dns1_host = "ns1.gforge.company.com"; $sys_dns2_host = "ns2.gforge.company.com"; //Databases, html/php/other paths //server to use for updates and reads //If this is null (i.e. ""), then gforge will use Unix sockets to connect //to the database. $sys_dbhost="localhost"; //whether or not to use replication $sys_db_use_replication=false; $sys_dbreadhost='localhost'; $sys_dbreaddb='stats'; $sys_dbname="alexandria"; $sys_dbuser="www"; // You can also specify a database port if you're using something other than 5432 //$sys_dbport="4242"; $sys_server="pgsql"; // // Passwords // $sys_dbpasswd=""; $sys_ldap_passwd=""; $sys_jabber_pass=""; // // Account Management // // UNIX for classic account management // LDAP for managing with ldap // NIS not implemented $sys_account_manager_type='UNIX'; // // LDAP configuration // // enable(1) or disable(0) ldap use altogether $sys_use_ldap=0; $sys_ldap_host="ldap.gforge.company.com"; $sys_ldap_port=389; $sys_ldap_version=3; // this is dn under which all information stored $sys_ldap_base_dn="dc=gforge,dc=company,dc=com"; // and this, how we do access it (add permission required) $sys_ldap_bind_dn="cn=SF_robot,dc=gforge,dc=company,dc=com"; // admin dn - login dn which has permissions to delete entries // NOT used by web code, only by support utilities // note that password NOT stored here $sys_ldap_admin_dn="cn=admin,dc=gforge,dc=company,dc=com"; // // CVS configuration // // Path to CVS tarballs directory $sys_cvs_tarballs_path='/path/to/cvs/tarballs'; // // Jabber Configuration // $sys_use_jabber=0; //messages from the system will be sent to this address $sys_jabber_server="jabber.gforge.company.com"; $sys_jabber_port="5222"; // messages sent to jabber accounts will come from this user // It is similar to the "From: noreply@gforge.org" used in emails $sys_jabber_user="noreply"; // // FEATURES // You can turn features on/off sitewide // $sys_use_cvs=true; $sys_use_tracker=true; $sys_use_forum=true; $sys_use_pm=true; $sys_use_docman=true; $sys_use_news=true; $sys_use_mail=true; $sys_use_survey=true; $sys_use_frs=true; $sys_use_ftp=true; $sys_use_trove=true; $sys_use_snippet=true; $sys_use_ssl=false; $sys_use_people=true; // Enable/Disable the ability to add additionnal vhost for a project $sys_use_project_vhost=true; // Enable/Disable the ability to have database for a project (backend not implemented) $sys_use_project_database=false; // Enable/Disable the ability to add images for a project (frontend not implemented) $sys_use_project_multimedia=false; // // Restricted project registration // If set to true, only a site admin can register projects // $sys_project_reg_restricted=true; // // Groups and Homes dir prefix // $homedir_prefix="/home"; $groupdir_prefix="/home/groups"; $sys_chroot=""; // // File Upload Configuration // // Create a directory, which is writable by your webserver, but not // within its document root (does not fall under www/ in the tarball) // Your php.ini file may have to be modified to allow writing outside // the webserver's directory // $sys_upload_dir='/path/to/uploads/'; // Where the GForge files are placed // *** IMPORTANT: sys_urlroot *MUST* be an ABSOLUTE FILEYSTEM PATH NAME // that points to the www directory of the GForge // installation. If you use ANY form of relative path // you will break the html_image function in include/html.php // $sys_urlroot="/path/to/gforge/www/"; // Name of the system as a whole (needed by various utils and titles) $sys_name="MyGForge"; // session cookie settings // // IMPORTANT - YOU MUST CHANGE "foobar" to a long, random number // $sys_session_key = "foobar"; $sys_session_expire = 60 * 60 * 24 * 7; // Require that user give unique (not yet existent in db) email upon // registration $sys_require_unique_email=0; // GUI modifications (menu colors, etc.) // See the top of the file include/html.php, this is where the menu colors // and colors used throughout GForge are defined. // Themeing related vars... Some of this needs to change in the session stuff // The theme base directory, everything else is handled by theme_sysinit() $sys_themeroot=$sys_urlroot."themes/"; // If you want an other default theme or language $sys_theme='gforge'; $sys_default_theme_id=1; $sys_lang='English'; $sys_default_timezone='GMT'; $sys_default_country_code='US'; // Akamization of images // example: http://images.gforge.company.com $sys_images_url="http://gforge.company.com/"; $sys_images_secure_url="https://gforge.company.com/"; // Groups // The GForge permission model is based on groups // certain parts of the site, like news, stats, etc // are based on special group_id numbers // group_id #1 is the super-user group of sitewide admins $sys_news_group=3; $sys_stats_group=2; $sys_peer_rating_group=4; $default_trove_cat=18; // JPGRAPH Package $sys_path_to_jpgraph='/path/to/jpgraph'; // CVSWEB $sys_path_to_cvsweb='/path/to/cvsweb'; // Show Source // Setting this to 1 will add a "Show Source" link to the bottom of each page $sys_show_source=0; // Force Login $sys_force_login=0; // Truetype font settings //$gantt_title_font_family="FF_ARIAL"; //$gantt_title_font_style="FS_NORMAL"; //$gantt_title_font_size=12; //$gantt_task_font_family="FF_ARIAL"; //$gantt_task_font_style="FS_NORMAL"; //$gantt_task_font_size=12; // Place for customized files $sys_custom_path='/path/to/gforge/etc/custom'; // // Localization caching Configuration // // Enable localization caching system $sys_localization_enable_caching = true; // Create a directory, which is writable by your webserver, but not // within its document root (does not fall under www/ in the tarball) // Your php.ini file may have to be modified to allow writing outside // the webserver's directory $sys_localization_cache_path = '/path/to/localization/cache/'; // Enable timestamp checking (if disabled, you have to remove manually cache files on update) $sys_localization_enable_timestamp_checking = true; // End of customizations -- place nothing after the closing PHP tag! ?>