# # This is an example instance-specific configuration file. See the # httpd@.service(8) man page for detailed information on using the # the httpd@.service with instances. # # To use this example, copy instance.conf to /etc/httpd/conf/foobar.conf # This config will then used as the default configuration when # running: # # # systemctl start httpd@foobar.service # # The changes compared to the default are: # - DefaultRuntime, DefaultStateDir and Pidfile renamed to instance-specific # - default logfile names are prefixed with the instance name # - /etc/httpd/conf.d is NOT included by default (conf.modules.d still is) # # Further customisations will be required for an instance to run # simultaneously to httpd.service under the default configuration, # e.g. changing the port used with Listen. # DefaultRuntimeDir /run/httpd/instance-${HTTPD_INSTANCE} DefaultStateDir /var/lib/httpd/instance-${HTTPD_INSTANCE} PidFile /run/httpd/instance-${HTTPD_INSTANCE}.pid # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the # directive. # # Change this to Listen on a specific IP address, but note that if # httpd.service is enabled to run at boot time, the address may not be # available when the service starts. See the httpd.service(8) man # page for more information. # #Listen 12.34.56.78:80 Listen 8081 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # Include conf.modules.d/*.conf LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule ssl_module modules/mod_ssl.so LoadModule proxy_module modules/mod_proxy.so # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User apache Group apache # 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # definition. These values also provide defaults for # any containers you may define later in the file. # # All of these directives may appear inside containers, # in which case these default settings will be overridden for the # virtual host being defined. # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If your host doesn't have a registered DNS name, enter its IP address here. # #ServerName www.example.com:80 # # Deny access to the entirety of your server's filesystem. You must # explicitly permit access to web content directories in other # blocks below. # AllowOverride none Require all denied # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "/var/www/html-8081" # # Relax access to content within /var/www. # AllowOverride None # Allow open access: Require all granted # Further relax access to the default document root: # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.4/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride None # # Controls who can get stuff from this server. # Require all granted # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # DirectoryIndex index.html # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Require all denied # # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. # ErrorLog "logs/${HTTPD_INSTANCE}_error_log" # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common # You need to enable mod_logio.c to use %I and %O LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # container, they will be logged here. Contrariwise, if you *do* # define per- access logfiles, transactions will be # logged therein and *not* in this file. # #CustomLog "logs/access_log" common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # CustomLog "logs/${HTTPD_INSTANCE}_access_log" combined # # Redirect: Allows you to tell clients about documents that used to # exist in your server's namespace, but do not anymore. The client # will make a new request for the document at its new location. # Example: # Redirect permanent /foo http://www.example.com/bar # # Alias: Maps web paths into filesystem paths and is used to # access content that does not live under the DocumentRoot. # Example: # Alias /webpath /full/filesystem/path # # If you include a trailing / on /webpath then the server will # require it to be present in the URL. You will also likely # need to provide a section to allow access to # the filesystem path. # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the target directory are treated as applications and # run by the server when requested rather than as documents sent to the # client. The same rules about trailing "/" apply to ScriptAlias # directives as to Alias. # ScriptAlias /cgi-bin/ "/var/www/cgi-bin-8081/" # # "/var/www/cgi-bin-8081" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # AllowOverride None Options None Require all granted # # TypesConfig points to the file containing the list of mappings from # filename extension to MIME-type. # TypesConfig /etc/mime.types # # AddType allows you to add to or override the MIME configuration # file specified in TypesConfig for specific file types. # #AddType application/x-gzip .tgz # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # AddHandler allows you to map certain file extensions to "handlers": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add "ExecCGI" to the "Options" directive.) # #AddHandler cgi-script .cgi # For type maps (negotiated resources): #AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # AddType text/html .shtml AddOutputFilter INCLUDES .shtml # # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset UTF-8 # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # MIMEMagicFile conf/magic # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # EnableMMAP and EnableSendfile: On systems that support it, # memory-mapping or the sendfile syscall may be used to deliver # files. This usually improves server performance, but must # be turned off when serving from networked-mounted # filesystems or if support for these functions is otherwise # broken on your system. # Defaults if commented: EnableMMAP On, EnableSendfile Off # #EnableMMAP off EnableSendfile on SSLProxyEngine on #----------------BEGIN APG_ES_Data_Management--------------# ProxyPass https://esbtest.genpt.net/validateAddress.WSDL ProxyPassReverse https://esbtest.genpt.net/validateAddress.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/validateAddress connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/validateAddress AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all #----------------END APG_ES_Data_Management----------------# #----------------BEGIN APG_ES_Delivery_Management--------------# ProxyPass https://esbtest.genpt.net/DeliveryStatus ProxyPassReverse https://esbtest.genpt.net/DeliveryStatus AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user elite svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/ReceiveOrderFeed ProxyPassReverse https://esbtest.genpt.net/ReceiveOrderFeed AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user jde svc_apg_sts_app_w Allow from all #----------------END APG_ES_Delivery_Management----------------# #----------------BEGIN APG_ES_Loyalty--------------# ProxyPass https://esbtest.genpt.net/tams-loyalty-memberstatus connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/tams-loyalty-memberstatus AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/tams-loyalty-registration connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/tams-loyalty-registration AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole svc_apg_sts_app_w atp Allow from all #Allow from all ProxyPass https://esbtest.genpt.net/tams-loyalty-transactions connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/tams-loyalty-transactions AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-memberstatus connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-memberstatus AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole mwsRPMLoyaltyRewards noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-registration connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-registration AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole mwsRPMLoyaltyRewards noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-memberstatus/v2 connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-memberstatus/v2 AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole mwsRPMLoyaltyRewards noluser svc_apg_sts_app_w atp MovableInk Allow from all ProxyPass https://esbtest.genpt.net/loyalty-registration/v2 connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-registration/v2 AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole mwsRPMLoyaltyRewards noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-transactions connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-transactions AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user tamsloyaltyuser mwsPinHole mwsRPMLoyaltyRewards noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-pendingreward connectiontimeout=5 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-pendingreward AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-locationstatus connectiontimeout=5 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-locationstatus AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-memberactivity connectiontimeout=5 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-memberactivity AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user noluser svc_apg_sts_app_w atp Allow from all ProxyPass https://esbtest.genpt.net/loyalty-claimpoints connectiontimeout=5 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/loyalty-claimpoints AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user noluser svc_apg_sts_app_w atp Allow from all #----------------END APG_ES_Loyalty----------------# #----------------BEGIN APG_ES_Site--------------# ProxyPass https://esbtest.genpt.net/checkStoreNumber connectiontimeout=5 timeout=62 keepalive=On ProxyPassReverse https://esbtest.genpt.net/checkStoreNumber AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/checkStoreNumber.WSDL ProxyPassReverse https://esbtest.genpt.net/checkStoreNumber.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/checkStoreNumber/v2 connectiontimeout=5 timeout=62 keepalive=On ProxyPassReverse https://esbtest.genpt.net/checkStoreNumber/v2 AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/checkStoreNumber_v2.WSDL ProxyPassReverse https://esbtest.genpt.net/checkStoreNumber_v2.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mdmuser svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/getstoredata/ connectiontimeout=5 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/getstoredata/ AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user ccgautomation ibiz storeData rpmStoreData svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/SiteFeed connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SiteFeed AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user uap Allow from all ProxyPass https://esbtest.genpt.net/SiteFeed.WSDL connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SiteFeed.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user uap Allow from all ProxyPass https://esbtest.genpt.net/SiteDeliveryFeed connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SiteDeliveryFeed AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user uap Allow from all ProxyPass https://esbtest.genpt.net/SiteDeliveryFeed.WSDL connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SiteDeliveryFeed.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user uap Allow from all #----------------END APG_ES_Site----------------# #----------------BEGIN APG_IBS_Portal--------------# ProxyPass https://esbtest.genpt.net/portalnotify ProxyPassReverse https://esbtest.genpt.net/portalnotify AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user ibsTAMS svc_apg_sts_app_w Allow from all #----------------END APG_IBS_Portal----------------# #----------------BEGIN APG_NAPA_Online--------------# ProxyPass https://esbtest.genpt.net/nol-ca-b2bpartinq connectiontimeout=5 timeout=11 keepalive=On ProxyPassReverse https://esbtest.genpt.net/nol-ca-b2bpartinq AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole noluser svc_apg_sts_app_w RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/nol-b2bpartinq connectiontimeout=5 timeout=11 keepalive=On ProxyPassReverse https://esbtest.genpt.net/nol-b2bpartinq AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole noluser svc_apg_sts_app_w RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/nol-b2bsalesorder connectiontimeout=5 timeout=12 keepalive=On ProxyPassReverse https://esbtest.genpt.net/nol-b2bsalesorder AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole noluser RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/nol-ca-b2bsalesorder connectiontimeout=5 timeout=12 keepalive=On ProxyPassReverse https://esbtest.genpt.net/nol-ca-b2bsalesorder AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole noluser RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/ijoei-jdemultipartinq connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ijoei-jdemultipartinq AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole noluser RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all # #ProxyPass https://esbtest.genpt.net/ejoei-jdesalesorder connectiontimeout=10 timeout=20 keepalive=On #ProxyPassReverse https://esbtest.genpt.net/ejoei-jdesalesorder #AuthType Basic #AuthName "Restricted Files" #AuthBasicAuthoritative On #SetEnv proxy-chain-auth On #AuthUserFile /etc/httpd/conf/passwords #Require user mwsPinHole noluser #RequestHeader set uniqueid %{UNIQUE_ID}e #Allow from all # ProxyPass https://esbtest.genpt.net/ejoei-orderstatus connectiontimeout=5 timeout=10 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ejoei-orderstatus Allow from all #----------------END APG_NAPA_Online----------------# #----------------BEGIN APG_NAPA_XPRESS--------------# ProxyPass https://esbtest.genpt.net/Order connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/Order AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user PartsDetect WashingtonGroup EpicorVision Threepcp RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/GetShippingQuote connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/GetShippingQuote AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user PartsTech RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all #----------------END APG_NAPA_XPRESS----------------# #----------------BEGIN APG_POS_InvoiceInquiry--------------# #INVOICE INQUIRY SERVICES ProxyPass https://esbtest.genpt.net/XeroxPOSReconciliation/POSReconciliationService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/XeroxPOSReconciliation/POSReconciliationService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole mwsXerox svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/POSTransaction/POSTransactionService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/POSTransaction/POSTransactionService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfCary CityOfPocatello CookCounty FPL mwsChevin mwsDelta mwsFishers mwsPinHole mwsTexasDirectAuto mwsXLGroup svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL CityOfFayettevilleNC KansasDepartmentofTransportation CityOfCocoaFL TheCityofRoswellGA CityofBoyntonBeachFL WestHartfordIntegrationCT CityofTempbe Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/POSTransaction/POSTransactionService.WSDL ProxyPassReverse https://esbtest.genpt.net/POSTransaction/POSTransactionService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfCary CityOfPocatello CookCounty FPL mwsChevin mwsDelta mwsFishers mwsPinHole mwsTexasDirectAuto mwsXLGroup svc_apg_sts_app_w Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/CFA_POSReconciliation/CFAPOSReconciliationService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/CFA_POSReconciliation/CFAPOSReconciliationService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfCrystalLake CityOfLawton knoxCounty mwsCFA mwsPinHole svc_apg_sts_app_w JeffersonParrishLA VillageOfDownersGroveIL MidwestCityOK Allow from all ProxyPass https://esbtest.genpt.net/Sanimax/POS/SanimaxPOSService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/Sanimax/POS/SanimaxPOSService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsSanimax svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/Lucity/POS/LucityPOSService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/Lucity/POS/LucityPOSService.asmx Allow from all ProxyPass https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsOakRidge mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/POSReconciliation/POSReconciliationService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/POSReconciliation/POSReconciliationService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user AccurateTruck AtlantaPublicSchools CarrollCounty CityOfCary CityOfGreenville CityOfPocatello CityOfSantaMonica CityOfVirginiaBeach cobbCountyFleet CookCounty DominionEnergy FPL ibiz JFletcherCreamer louisvilleMetro mwsChevin mwsDelta mwsFishers mwsPinHole mwsServiceStar mwsTexasDirectAuto PhiladelphiaSchoolDistrict svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL CityOfFayettevilleNC KansasDepartmentofTransportation CityOfCocoaFL TheCityofRoswellGA CityofBoyntonBeachFL WestHartfordIntegrationCT CityofTempbe Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/SC_POSData/SCPOSDataService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SC_POSData/SCPOSDataService.asmx Allow from all ProxyPass https://esbtest.genpt.net/SouthwestPOSReconciliation/POSReconciliationService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/SouthwestPOSReconciliation/POSReconciliationService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsSouthWest svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/StJohnPOSReconciliation/StJohnPOSDataService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/StJohnPOSReconciliation/StJohnPOSDataService.asmx Allow from all ProxyPass https://esbtest.genpt.net/CFA_POSReconciliation/CFAPOSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/CFA_POSReconciliation/CFAPOSReconciliationService.WSDL AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfCrystalLake CityOfLawton knoxCounty mwsCFA mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/Sanimax/POS/SanimaxPOSService.WSDL ProxyPassReverse https://esbtest.genpt.net/Sanimax/POS/SanimaxPOSService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsSanimax svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/Lucity/POS/LucityPOSService.WSDL ProxyPassReverse https://esbtest.genpt.net/Lucity/POS/LucityPOSService.WSDL Allow from all ProxyPass https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsOakRidge mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/OakRidgePOSReconciliation/POSReconciliationService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsOakRidge mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/POSReconciliation/POSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/POSReconciliation/POSReconciliationService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords #AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user AccurateTruck AtlantaPublicSchools CarrollCounty CityOfCary CityOfPocatello CityOfSantaMonica cobbCountyFleet CookCounty DominionEnergy FPL JFletcherCreamer louisvilleMetro mwsChevin mwsDelta mwsFishers mwsPinHole mwsServiceStar mwsTexasDirectAuto PhiladelphiaSchoolDistrict svc_apg_sts_app_w Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/SC_POSData/SCPOSDataService.WSDL ProxyPassReverse https://esbtest.genpt.net/SC_POSData/SCPOSDataService.WSDL Allow from all ProxyPass https://esbtest.genpt.net/SouthwestPOSReconciliation/POSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/SouthwestPOSReconciliation/POSReconciliationService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsSouthWest svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/StJohnPOSReconciliation/StJohnPOSDataService.WSDL ProxyPassReverse https://esbtest.genpt.net/StJohnPOSReconciliation/StJohnPOSDataService.WSDL Allow from all ProxyPass https://esbtest.genpt.net/XeroxPOSReconciliation/POSReconciliationService.WSDL ProxyPassReverse https://esbtest.genpt.net/XeroxPOSReconciliation/POSReconciliationService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On # AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user mwsPinHole mwsXerox svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/ping connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ping Allow from all ProxyPass https://esbtest.genpt.net/ping connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ping Allow from all ProxyPass https://esbtest.genpt.net/WorkOrderService/WorkOrderRequest.asmx ProxyPassReverse https://esbtest.genpt.net/WorkOrderService/WorkOrderRequest.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user AtlantaPublicSchools CarrollCounty CityOfCary CityOfGrandPrairie CityOfGreenville CityOfSantaMonica CityOfVirginiaBeach ClarkPublicUtilities cobbCountyFleet DominionEnergy HillsboroughCounty HillsbroughCntySheriff ibsEBIS ibsFMS JFletcherCreamer louisvilleMetro mwsDelta mwsSanimax pge PhiladelphiaSchoolDistrict PolkCountyFL SaltLakeCounty SouthwestAirlines SuffolkCounty svc_apg_sts_app_w XcelEnergy PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL CityOfFayettevilleNC NassauCounty CityofMiamiBeachFL CitrusCountyFL KansasDepartmentofTransportation CityofMiamiBeachFL CityofNormanOK CityofWestJordanUT CityofAlexandriaVA CityofPortsMouthVA CityofSaintLouisMO CityofBoyntonBeachFL DallasCountyTX CityofWestminsterCO CityofFortWorthTX ColoradoSpringsCO palmBeachCF CityofSeattleWA CityOfCocoaFL TheCityofRoswellGA CityofSpokaneWA CharlotteCountyFL WestHartfordIntegrationCT PinellasCountyFL CityofTempbe Allow from all ProxyPass https://esbtest.genpt.net/WorkOrderService/WorkOrderRequest.WSDL ProxyPassReverse https://esbtest.genpt.net/WorkOrderService/WorkOrderRequest.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On #AuthUserFile /apps/tibco2/apache/httpd-2.4.37/conf/passwords AuthUserFile /etc/httpd/conf/passwords Require user AtlantaPublicSchools CarrollCounty CityOfCary CityOfGrandPrairie CityOfGreenville CityOfSantaMonica CityOfVirginiaBeach ClarkPublicUtilities cobbCountyFleet DominionEnergy HillsboroughCounty HillsbroughCntySheriff ibsEBIS ibsFMS JFletcherCreamer louisvilleMetro mwsDelta mwsSanimax pge PhiladelphiaSchoolDistrict PolkCountyFL SaltLakeCounty SouthwestAirlines SuffolkCounty svc_apg_sts_app_w XcelEnergy NassauCounty CityofMiamiBeachFL Allow from all #----------------END APG_POS_InvoiceInquiry----------------# #----------------BEGIN APG_POS_PartInquiry_SalesOrder--------------# #PRODUCT INQUIRY AND ORDER SERVICES ProxyPass https://esbtest.genpt.net/ActivantAConneX/ActivantAConneXService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ActivantAConneX/ActivantAConneXService.asmx Allow from all ProxyPass https://esbtest.genpt.net/DirectPartIssue/DirectPartIssueService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/DirectPartIssue/DirectPartIssueService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require group AssetWorksUsers Require user mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/PartIssue/PartIssueService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/PartIssue/PartIssueService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfPocatello CookCounty FPL mwsChevin mwsDelta mwsFishers mwsPinHole mwsTexasDirectAuto svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL KansasDepartmentofTransportation CityOfFayettevilleNC CityOfCocoaFL CityofBoyntonBeachFL WestHartfordIntegrationCT TheCityofRoswellGA Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/PartUpdateRequest/PartUpdateRequestService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/PartUpdateRequest/PartUpdateRequestService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfPocatello CookCounty FPL ibiz mwsChevin mwsDelta mwsFishers mwsPinHole mwsSanimax mwsTexasDirectAuto mwsXLGroup svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL KansasDepartmentofTransportation CityOfFayettevilleNC CityOfCocoaFL CityofBoyntonBeachFL TheCityofRoswellGA WestHartfordIntegrationCT Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/PartTransfer/PartTransferService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/PartTransfer/PartTransferService.asmx AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require group AssetWorksUsers Require user mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/ActivantAConneX/ActivantAConneXService.WSDL ProxyPassReverse https://esbtest.genpt.net/ActivantAConneX/ActivantAConneXService.WSDL Allow from all ProxyPass https://esbtest.genpt.net/PartTransfer/PartTransferService.WSDL ProxyPassReverse https://esbtest.genpt.net/PartTransfer/PartTransferService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require group AssetWorksUsers Require user mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/PartUpdateRequest/PartUpdateRequestService.WSDL ProxyPassReverse https://esbtest.genpt.net/PartUpdateRequest/PartUpdateRequestService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfPocatello CookCounty FPL ibiz mwsChevin mwsDelta mwsFishers mwsPinHole mwsSanimax mwsTexasDirectAuto mwsXLGroup svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL CityOfFayettevilleNC Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/DirectPartIssue/DirectPartIssueService.WSDL ProxyPassReverse https://esbtest.genpt.net/DirectPartIssue/DirectPartIssueService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require group AssetWorksUsers Require user mwsPinHole svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/PartIssue/PartIssueService.WSDL ProxyPassReverse https://esbtest.genpt.net/PartIssue/PartIssueService.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords AuthGroupFile /etc/httpd/conf/Groups Require user CityOfPocatello CookCounty FPL mwsChevin mwsDelta mwsFishers mwsPinHole mwsTexasDirectAuto svc_apg_sts_app_w PascoCountyFL SchoolDistOfPalmBeachFL CityOfGainesvilleFL UtahDepartmentOfTransportation CityOfAlbuquerqueNM CityOfSalemOR CityOfArlingtonTX HillsboroughCountyFL BexarCountyFL CityOfFayettevilleNC Require group AssetWorksUsers Allow from all ProxyPass https://esbtest.genpt.net/ping connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ping Allow from all #IBS Services ProxyPass https://esbtest.genpt.net/fms-b2bpartorder connectiontimeout=5 timeout=15 keepalive=On ProxyPassReverse https://esbtest.genpt.net/fms-b2bpartorder AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords Require user ibsFMS svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/fms-b2bpartorder.WSDL ProxyPassReverse https://esbtest.genpt.net/fms-b2bpartorder.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthGroupFile /etc/httpd/conf/Groups AuthUserFile /etc/httpd/conf/passwords Require user ibsFMS svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/getnewibsstores ProxyPassReverse https://esbtest.genpt.net/getnewibsstores AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user ibsTAMS svc_apg_sts_app_w Allow from all #----------------END APG_POS_PartInquiry_SalesOrder----------------# #----------------BEGIN APG_POS_IBIZ_InvoiceInquiry--------------# #INVOICE INQUIRY SERVICES ProxyPass https://esbtest.genpt.net/IBIZ_POSReconciliation connectiontimeout=30 timeout=270 keepalive=On ProxyPassReverse https://esbtest.genpt.net/IBIZ_POSReconciliation AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user ibiz svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/IBIZ_POSReconciliation.WSDL ProxyPassReverse https://esbtest.genpt.net/IBIZ_POSReconciliation.WSDL AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user ibiz svc_apg_sts_app_w Allow from all ProxyPass https://esbtest.genpt.net/ping connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ping Allow from all ProxyPass https://esbtest.genpt.net/ping connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ping Allow from all #----------------END APG_POS_IBIZ_InvoiceInquiry----------------# #----------------BEGIN APG_Pulse--------------# ProxyPass https://esbtest.genpt.net/MICORService/MICORService.WSDL ProxyPassReverse https://esbtest.genpt.net/MICORService/MICORService.WSDL Allow from all ProxyPass https://esbtest.genpt.net/MICORService/MICORService.asmx connectiontimeout=30 timeout=300 keepalive=On ProxyPassReverse https://esbtest.genpt.net/MICORService/MICORService.asmx Allow from all #----------------END APG_Pulse----------------# #----------------BEGIN APG_Retail_Merchandising--------------# ProxyPass https://esbtest.genpt.net/ePlanogram connectiontimeout=30 timeout=70 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ePlanogram Allow from all #----------------END APG_Retail_Merchandising----------------# #----------------BEGIN GPC_EIS--------------# #----------------END GPC_EIS----------------# #----------------BEGIN APG_ES_Customer--------------# ProxyPass https://esbtest.genpt.net/prolinkregistration ProxyPassReverse https://esbtest.genpt.net/prolinkregistration Allow from all ProxyPass https://esbtest.genpt.net/AccountStatus ProxyPassReverse https://esbtest.genpt.net/AccountStatus AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user sparklink svc_apg_sts_app_w Allow from all #----------------END APG_ES_Customer----------------# #----------------BEGIN APG_POS_InvoiceFeed--------------# ProxyPass https://esbtest.genpt.net/ReceiveNotification connectiontimeout=1 timeout=7 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ReceiveNotification Allow from all #----------------END APG_POS_InvoiceFeed----------------# #----------------BEGIN ISSCRouter--------------# ProxyPass https://esbtest.genpt.net/esbisscrouter ProxyPassReverse https://esbtest.genpt.net/esbisscrouter Allow from all #----------------END ISSCRouter----------------# #----------------BEGIN ASWARouter--------------# ProxyPass https://esbtest.genpt.net/esbaswarouter ProxyPassReverse https://esbtest.genpt.net/esbaswarouter Allow from all #----------------END ASWARouter----------------# #----------------BEGIN BridgeRouter--------------# ProxyPass https://esbtest.genpt.net/esbbridgerouter ProxyPassReverse https://esbtest.genpt.net/esbbridgerouter Allow from all #----------------END BridgeRouter----------------# #----------------BEGIN FindItUAPRouter--------------# ProxyPass https://esbtest.genpt.net/esbfindituaprouter ProxyPassReverse https://esbtest.genpt.net/esbfindituaprouter Allow from all #----------------END FindItUAPRouter----------------# #----------------BEGIN MultiStoreGateRouter--------------# ProxyPass https://esbtest.genpt.net/esbmultistoregaterouter ProxyPassReverse https://esbtest.genpt.net/esbmultistoregaterouter Allow from all #----------------END MultiStoreGateRouter----------------# #----------------BEGIN ProLinkRouter--------------# ProxyPass https://esbtest.genpt.net/esbprolinkrouter ProxyPassReverse https://esbtest.genpt.net/esbprolinkrouter Allow from all #----------------END ProLinkRouter----------------# #----------------BEGIN SecureBridgeRouter--------------# ProxyPass https://esbtest.genpt.net/esbsecurebridgerouter ProxyPassReverse https://esbtest.genpt.net/esbsecurebridgerouter AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user fountaintire fountain_tire_test svc_apg_sts_app_w RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all #----------------END SecureBridgeRouter----------------# #----------------BEGIN APG_ES_Product--------------# ProxyPass https://esbtest.genpt.net/v1/PartsAvailabilityDetails connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/v1/PartsAvailabilityDetails AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user OneSource WashingtonGroup RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/v2/PartsAvailabilityDetails connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/v2/PartsAvailabilityDetails AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user OneSource WashingtonGroup RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/locateProduct connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/locateProduct AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user DstSoleraB2B mamOpenWebsB2B PartsDetect PartsTech WashingtonGroup RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/locateProduct/v2 connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/locateProduct/v2 AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user DstSoleraB2B mamOpenWebsB2B PartsDetect PartsTech WashingtonGroup RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/locateProduct/v4 connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/locateProduct/v4 AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user DstSoleraB2B EpicorVision mamOpenWebsB2B PartsDetect PartsTech WashingtonGroup GermanParts AsianParts uap UMSServices STEDI Threepcp RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/StoreInventory connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/StoreInventory AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user IdealSupply RidgeStores RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/v2/InventoryVerification connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/v2/InventoryVerification AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user IdealSupply RidgeStores RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/InventorySync connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/InventorySync AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user IdealSupply RidgeStores RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all #----------------END APG_ES_Product----------------# #----------------BEGIN EntitySubscription--------------# ProxyPass https://esbtest.genpt.net/subscription/ ProxyPassReverse https://esbtest.genpt.net/subscription/{application}/filter/{subscription_filter_name} AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user Conduent ibiz Allow from all ProxyPass https://esbtest.genpt.net/entity/subscription/{application}/{subscription_filter_name} ProxyPassReverse https://esbtest.genpt.net/entity/subscription/{application}/{subscription_filter_name} Allow from all #----------------END EntitySubscription----------------# #----------------BEGIN DataManagement--------------# ProxyPass https://esbtest.genpt.net/aswaconfig/ ProxyPassReverse https://esbtest.genpt.net/aswaconfig/ Allow from all #----------------END DataManagement----------------# #----------------BEGIN Barcode--------------# ProxyPass https://esbtest.genpt.net/barcode/lookup connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/barcode/lookup AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user elite RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all ProxyPass https://esbtest.genpt.net/barcode/scan connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/barcode/scan AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user elite NapaStoreSystemsApp RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all #----------------END Barcode----------------# #----------------BEGIN APG_ES_Order--------------# ProxyPass https://esbtest.genpt.net/ReturnOrder connectiontimeout=10 timeout=20 keepalive=On ProxyPassReverse https://esbtest.genpt.net/ReturnOrder AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative Off SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user elite NapaStoreSystemsApp RequestHeader set uniqueid %{UNIQUE_ID}e Allow from all #----------------END APG_ES_Order----------------# #----------------BEGIN orderWHI--------------# ProxyPass https://esbtest.genpt.net/OrderWHI ProxyPassReverse https://esbtest.genpt.net/OrderWHI AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user sparklink svc_apg_sts_app_w Allow from all #----------------END orderWHI----------------# #----------------BEGIN locateproductWHI--------------# ProxyPass https://esbtest.genpt.net/LocateProductWHI ProxyPassReverse https://esbtest.genpt.net/LocateProductWHI AuthType Basic AuthName "Restricted Files" AuthBasicAuthoritative On SetEnv proxy-chain-auth On AuthUserFile /etc/httpd/conf/passwords Require user sparklink svc_apg_sts_app_w Allow from all #----------------END locateproductWHI----------------#