Configuration Guide

broken image


  1. Configuration Guide For Concur
  2. Cisco Catalyst 9300 Configuration Guide
-->

IIS Configuration Reference

Configuration Guide video For languages other than english, click here. Since this guide is extremely detailed and a long read, avih created a much shorter quick start guide which you can read here.If you still have questions or want to understand what each option does better, read the long guide. Configuration User Guide UG570 (v1.13) July 28, 2020. UltraScale Architecture Configuration 2 UG570 (v1.13) July 28, 2020 www.xilinx.com Revision History. Firepower Management Center Configuration Guide, Version 6.3 18/Sep/2020; Firepower Management Center Configuration Guide, Version 6.2.3 18/Sep/2020; Firepower Management Center Configuration Guide, Version 6.2.2 16/Apr/2020; Firepower Management Center Configuration Guide. 3.2.2 (Optional) Implementing Configuration for NAT Devices. If there are NAT devices on the network, the suitable network topology is shown in Figure 3-2. In this scenario, please verify the configuration on the VPN router, configure virtual servers on the NAT device, and configure IPsec ALG on both the remote gateway and the NAT device.

UG470 (v1.13.1) August 20, 2018 www.xilinx.com 7 Series FPGAs Configuration User Guide 1.2 Chapter 1, Configuration Overview: † Changed VCCCONFIG to VCCO0 † Added Virtex-7.

Internet Information Services (IIS) 7 and later use an XML-based configuration system for storing IIS settings which replaces the metabase that was used in IIS 6.0 and earlier. This new configuration system was introduced with ASP.NET and is based on a hierarchical system of management system that uses *.config files. The configuration files for IIS 7 and later are located in your %WinDir%System32InetsrvConfig folder, and the primary configuration files are:

  • ApplicationHost.config - This configuration file stores the settings for all your Web sites and applications.
  • Administration.config - This configuration file stores the settings for IIS management. These settings include the list of management modules that are installed for the IIS Manager tool, as well as configuration settings for management modules.
  • Redirection.config - IIS 7 and later support the management of several IIS servers from a single, centralized configuration file. This configuration file contains the settings that indicate the location where the centralized configuration files are stored.

Note

Some settings can be delegated to Web.config files, which may override settings in the ApplicationHost.config file. In addition, settings that are not delegated cannot be added to Web.config files.

How to use this configuration reference

The purpose of this configuration reference is to list the various configuration collections, elements, and attributes that are available for IIS 7 and later. Because of IIS's highly-customizable architecture, an element may not be configured unless the feature that consumes the settings that are listed in this reference is also installed. For example, a default installation of IIS 7 does not contain Digest authentication, so adding the settings for Digest authentication to your ApplicationHost.config will have no effect or may cause errors until the Digest authentication module is installed.

Each configuration topic in this reference will usually consist of the following sections:

  • Overview - This section describes the purpose of each configuration element.

  • Compatibility - This section describes which versions of IIS support each configuration element.

  • Setup Instructions - This section describes how to install any required features for each configuration element.

  • 'How To' Examples - This section contains one or more examples for configuring each configuration element.

  • Configuration Details - This section describes the attributes and child elements for each configuration element, and usually contains an XML configuration sample.

  • Code Samples - This section lists code samples in several languages that illustrate how to configure each configuration element programmatically. Code samples may be presented in six languages:

    • AppCmd.exe (command-line application)
    • C# .NET
    • Visual Basic .NET
    • JavaScript
    • VBScript
    • PowerShell

Configuration Reference downloads

Powershell

For PowerShell support on IIS administration, refer to the cmdlet reference.

This document contains basic configuration instructions for Phabricator.

Prerequisites

This document assumes you've already installed all the components you need.If you haven't, see Installation Guide.

The next steps are:

  • Configure your webserver (Apache, nginx, or lighttpd).
  • Access Phabricator with your browser.
  • Follow the instructions to complete setup.

Webserver: Configuring Apache

NOTE: Follow these instructions to use Apache. To use nginx or lighttpd, scrolldown to their sections.

Get Apache running and verify it's serving a test page. Consult the Apachedocumentation for help. Make sure mod_php and mod_rewrite are enabled,and mod_ssl if you intend to set up SSL.

If you haven't already, set up a domain name to point to the host you'reinstalling on. You can either install Phabricator on a subdomain (likephabricator.example.com) or an entire domain, but you can not install it insome subdirectory of an existing website. Navigate to whatever domain you'regoing to use and make sure Apache serves you something to verify that DNSis correctly configured.

NOTE: The domain must contain a dot ('.'), i.e. not be just a bare name like'http://example/'. Some web browsers will not set cookies otherwise.

Now create a VirtualHost entry for Phabricator. It should look something likethis:

If Apache isn't currently configured to serve documents out of the directorywhere you put Phabricator, you may also need to add section. Thesyntax for this section depends on which version of Apache you're running.(If you don't know, you can usually figure this out by running httpd -v.)For Apache versions older than 2.4, use this:

Configuration Guide For Concur

For Apache versions 2.4 and newer, use this:

After making your edits, restart Apache, then continue to 'Setup' below.

Webserver: Configuring nginx

NOTE: Follow these instructions to use nginx. To use Apache or lighttpd, scrollto their sections.

For nginx, use a configuration like this:

Restart nginx after making your edits, then continue to 'Setup' below.

Webserver: Configuring lighttpd

NOTE: Follow these instructions to use lighttpd. To use Apache or nginx, scrollup to their sections.

For lighttpd, add a section like this to your lighttpd.conf:

You should also ensure the following modules are listed in yourserver.modules list:

Finally, you should run the following commands to enable php support:

Restart lighttpd after making your edits, then continue below.

Load Balancer Health Checks

Cisco 9300 configuration guide

If you're using a load balancer in front of your webserver, you can configureit to perform health checks using the path /status/.

Setup

Now, navigate to whichever subdomain you set up. You should see instructions tocontinue setup. The rest of this document contains additional instructions forspecific setup steps.

When you resolve any issues and see the welcome screen, enter credentials tocreate your initial administrator account. After you log in, you'll want toconfigure how other users will be able to log in or register -- until you do,no one else will be able to sign up or log in. For more information, seeConfiguring Accounts and Registration.

Storage: Configuring MySQL

During setup, you'll need to configure MySQL. To do this, get MySQL running andverify you can connect to it. Consult the MySQL documentation for help. WhenMySQL works, you need to load the Phabricator schemata into it. To do this, run:

Configuration Guide

If you're using a load balancer in front of your webserver, you can configureit to perform health checks using the path /status/.

Setup

Now, navigate to whichever subdomain you set up. You should see instructions tocontinue setup. The rest of this document contains additional instructions forspecific setup steps.

When you resolve any issues and see the welcome screen, enter credentials tocreate your initial administrator account. After you log in, you'll want toconfigure how other users will be able to log in or register -- until you do,no one else will be able to sign up or log in. For more information, seeConfiguring Accounts and Registration.

Storage: Configuring MySQL

During setup, you'll need to configure MySQL. To do this, get MySQL running andverify you can connect to it. Consult the MySQL documentation for help. WhenMySQL works, you need to load the Phabricator schemata into it. To do this, run:

If your configuration uses an unprivileged user to connect to the database, youmay have to override the default user so the schema changes can be applied withroot or some other admin user:

You can avoid the prompt the script issues by passing the --force flag (forexample, if you are scripting the upgrade process).

NOTE: When you update Phabricator, run storage upgrade again to apply anynew updates.

Cisco Catalyst 9300 Configuration Guide

Next Steps

Continue by:

  • setting up your admin account and login/registration with Configuring Accounts and Registration; or
  • understanding advanced configuration topics with Configuration User Guide: Advanced Configuration; or
  • configuring an alternate file domain with Configuring a File Domain; or
  • configuring a preamble script to set up the environment properly behind a load balancer, or adjust rate limiting with Configuring a Preamble Script; or
  • configuring where uploaded files and attachments will be stored with Configuring File Storage; or
  • configuring Phabricator so it can send mail with Configuring Outbound Email; or
  • configuring inbound mail with Configuring Inbound Email; or
  • importing repositories with Diffusion User Guide; or
  • learning about daemons with Managing Daemons with phd; or
  • learning about notification with Notifications User Guide: Setup and Configuration; or
  • configuring backups with Configuring Backups and Performing Migrations; or
  • contributing to Phabricator with Contributor Introduction.




broken image