From 147eba3134c7aba951d16547aca153acbb07c1e7 Mon Sep 17 00:00:00 2001
From: root <root@alpha-devel_vufind2.finc.info>
Date: Thu, 11 Sep 2014 15:13:37 +0200
Subject: [PATCH] added alpha config

---
 local/config/vufind/config.ini           | 1143 ++++++++++++++++++++++
 local/httpd-vufind.conf                  |   64 ++
 local/import/import.properties           |   47 +
 local/import/import_auth.properties      |   47 +
 module/finc_eah/Module.php               |   92 ++
 module/finc_eah/config/module.config.php |    7 +
 vufind.bat                               |    4 +
 7 files changed, 1404 insertions(+)
 create mode 100644 local/config/vufind/config.ini
 create mode 100644 local/httpd-vufind.conf
 create mode 100644 local/import/import.properties
 create mode 100644 local/import/import_auth.properties
 create mode 100644 module/finc_eah/Module.php
 create mode 100644 module/finc_eah/config/module.config.php
 create mode 100644 vufind.bat

diff --git a/local/config/vufind/config.ini b/local/config/vufind/config.ini
new file mode 100644
index 00000000000..9f69af02e6e
--- /dev/null
+++ b/local/config/vufind/config.ini
@@ -0,0 +1,1143 @@
+;
+; VuFind Configuration
+;
+
+; This section controls global system behavior and can usually be left unmodified.
+[System]
+; Change to false to take the system offline and show an unavailability message;
+; note that you can use the NoILS driver (in [Catalog] section below) to keep VuFind
+; up during ILS maintenance.
+available       = true
+; Change to true to see messages about the behavior of the system as part of the
+; output -- only for use when troubleshooting problems:
+debug           = false
+; This setting should be set to false after auto-configuration is complete
+autoConfigure = true
+
+; This section will need to be customized for your installation
+[Site]
+; Base URL is normally auto-detected, but this setting is used when autodetection is
+; not possible (i.e. during sitemap generation at the command line).
+url = "https://alpha.finc.info/vufind_eah"
+email           = team@finc.info
+title           = "EAH vufind2"
+; This is the default theme for non-mobile devices (or all devices if mobile_theme
+; is disabled below). Available standard themes:
+;   blueprint =  XHTML theme using Blueprint + jQuery libraries
+;   bootstrap =  HTML5 theme using Bootstrap 2 + jQuery libraries, with minimal
+;                styling (DEPRECATED in favor of bootstrap3)
+;   bootprint =  bootstrap theme styled to resemble blueprint theme (DEPRECATED in
+;                favor of bootprint3)
+;   bootstrap3 = HTML5 theme using Bootstrap 3 + jQuery libraries, with minimal
+;               styling
+;   bootprint3 = bootstrap3 theme styled to resemble blueprint theme
+theme           = blueprint
+; Uncomment the following line to use a different default theme for mobile devices.
+; You may not wish to use this setting if you are using one of the Bootstrap-based
+; standard themes since they support responsive design. Available mobile theme:
+;   jquerymobile = Theme built using jQuery Mobile framework
+;mobile_theme    = jquerymobile
+; This is a comma-separated list of themes that may be accessed via the ?ui GET
+; parameter.  Each entry has two parts: the value used on the URL followed by the
+; actual theme name.  For example, http://library.myuniversity.edu/vufind?ui=theme1
+; would load the myTheme1 theme with the setting shown below.  Note that the values
+; of "standard" and "mobile" are reserved for the default and mobile themes defined
+; above.
+;alternate_themes = theme1:myTheme1,theme2:myTheme2
+; This is a comma-separated list of theme options that will be displayed to the user
+; as a drop-down.  Each entry has two parts: a value for the "ui" GET parameter and
+; an on-screen description.  "standard" refers to the "theme" setting above, "mobile"
+; refers to the "mobile_theme" setting, and all other values must be defined in
+; alternate_themes above.  When commented out, no drop-down theme list will display.
+;selectable_themes = "standard:Standard Theme,mobile:Mobile Theme"
+; Use the browser language setting to set the VuFind language.
+browserDetectLanguage = true
+language        = en    ; default -- more options available in [Languages] below.
+locale          = en_US
+; Find valid timezone values here:
+;   http://www.php.net/manual/en/timezones.php
+timezone        = "America/New_York"
+; A string used to format user interface date strings using the PHP date() function
+; default is m-d-Y (MM-DD-YYYY 01-01-2010)
+displayDateFormat = "m-d-Y"
+; A string used to format user interface time strings using the PHP date() function
+; default is H:i (HH:MM 23:01)
+displayTimeFormat = "H:i"
+; The base VuFind URL will load the "Home" action of this module unless the user
+; is logged in:
+defaultModule   = Search
+; The base VuFind URL will load the "Home" action of this module when the user
+; is logged in:
+defaultLoggedInModule = MyResearch
+; The route VuFind will send users to following a log out operation. Set to false
+; or omit to attempt to retain the user's current context after log out.
+;logOutRoute = home
+; This tab will show by default when a record is viewed:
+defaultRecordTab= Holdings
+; Hide the holdings tab if no holdings are available from the ILS
+hideHoldingsTabWhenEmpty = false
+; This page will show by default when a user accesses the MyResearch module:
+defaultAccountPage = Favorites
+; Allow access to the Admin module? (See [AdminAuth] below for more granular ways
+; to restrict Admin access).
+admin_enabled = false
+; Show sidebar on the left side instead of right
+sidebarOnLeft = false
+; Show (true) / Hide (false) Book Bag - Default is Hide.  The Book Bag is currently
+; only supported by the blueprint theme; other themes will ignore this setting.
+showBookBag = false
+; Set the maximum amount of items allowed in the Book Bag - Default is 100
+bookBagMaxSize = 100
+; Generator value to display in an HTML header <meta> tag:
+generator = "VuFind 2.3"
+
+; This section allows you to configure the mechanism used for storing user
+; sessions.  Available types: File, Memcache, Database.
+; Some of the settings below only apply to specific session handlers;
+; such settings are named with an obvious prefix.  Non-prefixed settings
+; are global to all handlers.
+[Session]
+type                        = File
+lifetime                    = 3600 ; Session lasts for 1 hour
+; Keep-alive interval in seconds. When set to a positive value, the session is kept
+; alive with a JavaScript call as long as a VuFind page is open in the browser.
+; Default is 0 (disabled). When keep-alive is enabled, session lifetime above can be
+; reduced to e.g. 600.
+;keepAlive = 60
+;file_save_path              = /tmp/vufind_sessions
+;memcache_host               = localhost
+;memcache_port               = 11211
+;memcache_connection_timeout = 1
+
+; Please set the ILS that VuFind will interact with.
+;
+; Available drivers: Aleph, Amicus, ClaviusSQL, Evergreen, Horizon (basic database
+;       access only), HorizonXMLAPI (more features via API), Innovative, Koha, LBS4,
+;       MultiBackend (to chain together multiple drivers in a consortial setting),
+;       NewGenLib, NoILS (for users without an ILS, or to disable ILS functionality
+;       during maintenance), Polaris, Unicorn (which also applies to SirsiDynix
+;       Symphony), Virtua, Voyager (for Voyager 6+), VoyagerRestful (for Voyager 7+
+;       w/ RESTful web services), XCNCIP (for XC NCIP Toolkit v1.x), XCNCIP2 (for
+;       XC NCIP Tookit v2.x)
+; Note: Unicorn users should visit the vufind-unicorn project for more details:
+;       http://code.google.com/p/vufind-unicorn/
+;
+; If you haven't set up your ILS yet, two fake drivers are available for testing
+; purposes.  "Sample" is fast but does very little; "Demo" simulates more
+; functionality of a real ILS but may slow down your system by performing extra
+; searches.  If you don't plan to use an ILS, the NoILS driver is your best option.
+;
+; Note: Enabling most of the features in this section will only work if you use an
+; ILS driver that supports them; not all drivers support holds/renewals.
+[Catalog]
+driver          = Sample
+
+;loadNoILSOnFailure - Whether or not to load the NoILS driver if the main driver fails
+loadNoILSOnFailure = false
+
+; This setting determines how and when hold / recall links are displayed.
+; Legal values:
+; - all (Show links for all items - Place Hold for Available Items and Place Recall
+;   for unavailable items)
+; - availability (Only show recall links if ALL items on bib are currently
+;   unavailable)
+; - disabled (Never show hold/recall links)
+; - driver (Use ILS driver to determine which items may be held/recalled; best option
+;   if available, but not supported by all drivers)
+; - holds (Only show links for available items)
+; - recalls (Only show links for unavailable items)
+; default is "all"
+holds_mode = "all"
+
+; Set this to true if you want to allow your ILS driver to override your holds_mode
+; setting on a record-by-record basis; this may be useful for local customizations,
+; but in most cases you should leave this setting unchanged.  Overrides are ignored
+; for mode settings of "driver" or "disabled."
+allow_holds_override = false
+
+; Determines if holds can be cancelled or not. Options are true or false.
+; default is false
+cancel_holds_enabled = false
+
+; Determines if storage retrieval requests can be cancelled or not.
+; Options are true or false.
+; default is false
+cancel_storage_retrieval_requests_enabled = false
+
+; Determines if ILL requests can be cancelled or not.
+; Options are true or false.
+; default is false
+cancel_ill_requests_enabled = false
+
+; Determines if item can be renewed or not. Options are true or false.
+; default is false
+renewals_enabled = false
+
+; Determines if title level holds are displayed or not.
+; Legal values:
+; - disabled (Never show title Holds - Default)
+; - always (Always show title Holds)
+; - availability (Only show title holds if ALL items on bib are currently
+;   unavailable)
+; - driver (Use ILS driver to determine which items may be held/recalled; best option
+;   if available, but not supported by all drivers)
+title_level_holds_mode = "disabled"
+
+; Determines how holdings are grouped in the record display.
+; Legal values:
+; - holdings_id (Use holdings record id if available, location name otherwise - Default)
+; - location_name (Use location name)
+;holdings_grouping = holdings_id
+
+; Text fields such as notes gathered from items to be displayed in each
+; holdings group in the display order.
+; The default list is 'notes', 'summary', 'supplements' and 'indexes'.
+; Note that displayed information depends on what the ILS driver returns.
+;holdings_text_fields[] = 'notes'
+;holdings_text_fields[] = 'summary'
+
+; This section allows you to determine how the users will authenticate.
+; You can use an LDAP directory, the local ILS (or multiple ILSes through
+; the MultiILS option), the VuFind database (Database), Shibboleth, SIP2,
+; CAS or some combination of these (via the MultiAuth or ChoiceAuth options).
+[Authentication]
+;method          = LDAP
+;method         = ILS
+method         = Database
+;method         = Shibboleth
+;method         = SIP2
+;method         = CAS
+;method         = MultiAuth
+;method         = ChoiceAuth
+;method         = MultiILS
+
+; This setting only applies when method is set to ILS.  It determines which
+; field of the ILS driver's patronLogin() return array is used as the username
+; in VuFind's user database.  If commented out, it defaults to cat_username
+; (the recommended setting in most situations).
+;ILS_username_field = cat_username
+
+; Whether or not to hide the Login Options
+hideLogin = false
+
+; Set this to false if you would like to store local passwords in plain text
+; (only applies when method = Database above).
+hash_passwords = "1"
+
+; Allow users to recover passwords via email (if supported by Auth method)
+; You can set the subject of recovery emails in your
+; language files under the term "recovery_email_subject"
+recover_password = false
+; Time (seconds) before another recovery attempt can be made
+recover_interval      = 60
+; Length of time before a recovery hash can no longer be used (expires)
+; Default: Two weeks
+recover_hash_lifetime = 1209600
+
+; Allow users to set change their passwords (if supported by Auth method)
+change_password = true
+
+; Set this to false if you would like to store catalog passwords in plain text
+encrypt_ils_password = "1"
+
+; This is the key used to encrypt and decrypt catalog passwords.  This must be
+; filled in with a random string value when encrypt_ils_passwords is set to true.
+ils_encryption_key = "4fa968bb383bb357b5e7279941bd282824dc9a69"
+
+; This setting may optionally be uncommented to restrict the email domain(s) from
+; which users are allowed to register when using the Database method.
+;domain_whitelist[] = "myuniversity.edu"
+;domain_whitelist[] = "mail.myuniversity.edu"
+
+; See the comments in library/VF/Auth/MultiAuth.php for full details
+; on using multiple authentication methods.  Note that MultiAuth assumes login
+; with username and password, so some methods (i.e. Shibboleth) may not be
+; compatible.
+;[MultiAuth]
+;method_order   = ILS,LDAP
+;filters = "username:trim,password:trim"
+
+; Present two auth options on the login screen. Each choice given must also be
+; configured in its relevent section. (The code should allow for more than 2
+; choices, but styling would need to be expanded / modified)
+;
+; WARNING! This module does not account for the possibility that the auth
+; choices you present may return different usernames. You would want a user to
+; be able to log in via any method and see the same account. To make sure that
+; is the case, you should ensure that the usernames given by the authentication
+; methods themselves are the same for any given user.
+;[ChoiceAuth]
+;choice_order = Shibboleth,Database
+
+; This section will allow you to control whether VuFind should record usage
+; statistics.
+[Statistics]
+; You can uncomment one or more of these lines to enable statistics tracking.
+; Each enabled mode will write stats to a different target (Solr stats index,
+; flat file, or database tables).  Some modes require additional settings below.
+;
+; Currently, VuFind stores statistics in two different contexts: searches and
+; record views.  By default, an enabled mode will log both types of stats.  If
+; you want to log different types of stats to different targets, you can use a
+; qualifier -- for example, "mode[] = Solr:Record" and "mode[] = Db:Search".
+; Multiple targets may be separated by commas.  Do not use qualifiers unless you
+; really need to -- logging all statistics to the same target makes reporting
+; more effective.
+;
+; Note: Statistics gathering includes browser detection.  For best results, make
+; sure you have a recent browscap.ini file configured in PHP.  See
+; http://php.net/manual/en/function.get-browser.php#refsect1-function.get-browser-notes
+;mode[] = Solr
+;mode[] = File
+;mode[] = Db
+
+; When using the Solr mode, specify the address of a Solr server containing a
+; "stats" core here; if no URL is specified, [Index]/url below will be used.
+;
+; Note: The stats core is disabled by default -- you will need to edit solr/solr.xml
+; to turn it on.
+;solr            = http://localhost:8080/solr
+
+; When using the File mode, specify a directory for saving stat files here:
+;file            = /usr/local/vufind/local/logs
+
+; When displaying search statistics in the Admin module, do you want to see a single
+; merged list, or separate grouped lists by module (Solr, Summon, etc.)
+searchesBySource = false
+
+; When display record view statistics in the Admin module, do you want to see a
+; single merged list, or separate grouped lists by module (Solr, Summon, etc.)
+recordsBySource = false
+
+; This section requires no changes for most installations
+[Index]
+engine          = Solr
+#url             = http://localhost:8080/solr
+#default_core    = biblio
+url             = http://141.39.229.21:8080/solrfusion
+default_core    = biblio
+
+
+; This setting needs to match the <maxBooleanClauses> setting in your solrconfig.xml
+; file; when VuFind has to look up large numbers of records using ID values, it may
+; have to restrict the size of its result set based on this limitation.
+maxBooleanClauses = 1024
+; This is the timeout in seconds when communicating with the Solr server.
+timeout = 30
+; This is the Dismax handler to use if nothing is specified in searchspecs.yaml.
+; You can choose dismax for standard Dismax (the default) or edismax for Extended
+; Dismax, or you can configure your own custom handler in solrconfig.xml.
+default_dismax_handler = dismax
+
+; Enable/Disable searching reserves using the "reserves" Solr core.  When enabling
+; this feature, you also need to uncomment the relevant line in solr/solr.xml and
+; restart Solr to enable the reserves core, and you need to run the
+; util/index_reserves.php script to populate the new index.
+[Reserves]
+search_enabled  = false
+
+; This section requires no changes for most installations; if your SMTP server
+; requires authentication, you can fill in a username and password below.
+[Mail]
+host            = localhost
+port            = 25
+;username       = user
+;password       = pass
+; If set to false, users can send anonymous emails; otherwise, they must log in first
+require_login   = true
+; Should we put the logged-in user's address in the "from" field by default?
+user_email_in_from = false
+; Should we put the logged-in user's address in the "to" field by default?
+user_email_in_to = false
+; Populate the "from" field with this value if user_email_in_from is false and/or no
+; user is logged in:
+;default_from = "no-reply@myuniversity.edu"
+; Should we hide the "from" field in email forms? If no from field is visible, emails
+; will be sent based on user_email_in_from and default_from above, with the email
+; setting from the [Site] section used as a last resort.
+disable_from = false
+
+; This section needs to be changed to match your database connection information
+[Database]
+database = "mysql://vufind_eah:jerwertUr@localhost/vufind_eah"
+
+; If your database (e.g. PostgreSQL) uses a schema, you can set it here:
+;schema = schema_name
+
+; The character set of the database -- may be latin1 or utf8; utf8 is STRONGLY
+; RECOMMENDED and is the default if no value is set here.  You may need latin1
+; for compatibility with existing VuFind 1.x installations.
+;charset = utf8
+
+; LDAP is optional.  This section only needs to exist if the
+; Authentication Method is set to LDAP.  When LDAP is active,
+; host, port, basedn and username are required.  The remaining
+; settings are optional, mapping fields in your LDAP schema
+; to fields in VuFind's database -- the more you fill in, the more
+; data will be imported from LDAP into VuFind.
+;[LDAP]
+; Prefix the host with ldaps:// to use LDAPS; omit the prefix for standard
+; LDAP with TLS.
+;host            = ldap.myuniversity.edu
+;port            = 389       ; LDAPS usually uses port 636 instead
+;basedn          = "o=myuniversity.edu"
+;username        = uid
+;firstname       = givenname
+;lastname        = sn
+;email           = mail
+;cat_username    =
+;cat_password    =
+;college         = studentcollege
+;major           = studentmajor
+; If you need to bind to LDAP with a particular account before
+; it can be searched, you can enter the necessary credentials
+; here.  If this extra security measure is not needed, leave
+; these settings commented out.
+;bind_username   = "uid=username o=myuniversity.edu"
+;bind_password   = password
+
+; SIP2 is optional.  This section only needs to exist if the
+; Authentication Method is set to SIP2.
+;[SIP2]
+;host            = ils.myuniversity.edu
+;port            = 6002
+
+; Shibboleth is optional.  This section only needs to exist if the
+; Authentication Method is set to Shibboleth.
+;[Shibboleth]
+
+; Optional: you may set attribute names and values to be used as a filter;
+; users will only be logged into VuFind if they match these filters.
+;userattribute_1       = entitlement
+;userattribute_value_1 = urn:mace:dir:entitlement:common-lib-terms
+;userattribute_2       = unscoped-affiliation
+;userattribute_value_2 = member
+
+; Required: the attribute Shibboleth uses to uniquely identify users.
+;username              = persistent-id
+
+; Required: Shibboleth login URL.
+;login                 = https://shib.myuniversity.edu/Shibboleth.sso/Login
+
+; Optional: Shibboleth logout URL.
+;logout                = https://shib.myuniversity.edu/Shibboleth.sso/Logout
+
+; Optional: URL to forward to after Shibboleth login (if omitted,
+; defaultLoggedInModule from [Site] section will be used).
+;target                = http://shib.myuniversity.edu/vufind/MyResearch/Home
+
+; Optional: provider_id parameter to pass along to Shibboleth login.
+;provider_id           = https://idp.example.edu/shibboleth-idp
+
+; Some or all of the following entries may be uncommented to map Shibboleth
+; attributes to user database columns:
+;cat_username = HTTP_ALEPH_ID
+;cat_password = HTTP_CAT_PASSWORD
+;email = HTTP_MAIL
+;firstname = HTTP_FIRST_NAME
+;lastname = HTTP_LAST_NAME
+;college = HTTP_COLLEGE
+;major = HTTP_MAJOR
+;home_library = HTTP_HOME_LIBRARY
+;
+; CAS is optional.  This section only needs to exist if the
+; Authentication Method is set to CAS.
+;[CAS]
+
+; Required: the attribute CAS uses to uniquely identify users.
+;username              = uid
+
+; Required: CAS Hostname.
+;server                = cas.myuniversity.edu
+
+; Required: CAS port.
+;port                 = 443
+
+; Required: CAS context.
+;context                 = /cas
+
+; Required: CAS Certificate Path.
+;CACert = /etc/pki/cert/cert.crt
+
+; Required: CAS login URL.
+;login                 = https://cas.myuniversity.edu/cas/login
+
+
+; Required: CAS logout URL.
+;logout                = https://cas.myuniversity.edu/cas/logout
+
+; Optional: CAS logging.
+;debug              = false
+;log                = /tmp/casdebug
+
+; Optional: URL to forward to after CAS login (if omitted,
+; defaultLoggedInModule from [Site] section will be used).
+;target                = http://lib.myuniversity.edu/vufind/MyResearch/Home
+
+; Some or all of the following entries may be uncommented to map CAS
+; attributes to user database columns:
+;cat_username = acctSyncUserID
+;cat_password = catPassword
+;email = mail
+;firstname = givenName
+;lastname = sn
+;college = college
+;major = major1
+;home_library = library
+
+; External Content is Optional.
+; To use multiple, separate with a comma.  Priority will be given by the order listed
+; Account id is separated with a colon, if no id is used then no colon is necessary
+; For Amazon, use your 20-character access key in the coverimages and reviews values;
+; you must also provide your 40-character secret key in the amazonsecret value and
+; your associate ID in the amazonassociate value.
+;
+; IMPORTANT: Review content providers' terms of service before turning them on.
+;            Terms may change, and not all content sources are appropriate for all
+;            applications.  The existence of functionality in VuFind does not imply
+;            suitability for any particular situation.
+[Content]
+; You can select Syndetics, LibraryThing, Summon, Amazon, Booksite, OpenLibrary,
+; Contentcafe and/or Google Books.
+;   Note: Summon service takes a Serials Solutions client key, NOT Summon API key!
+;coverimages     = Syndetics:MySyndeticsId,Amazon:MyAccessKeyId,Booksite,LibraryThing:MyLibraryThingId,Google,OpenLibrary,Summon:MySerialsSolutionsClientKey,Contentcafe:MyContentCafeID
+
+; This setting controls which services will have images cached on your local disk.
+; Set to true to cache all applicable services. Set to false to disable caching. Set
+; to a comma-separated list of services (e.g. "Syndetics,OpenLibrary") to cache only
+; a subset of selected services. Default = true. Note that due to terms of service,
+; some services will never have images cached even if caching is enabled.
+coverimagesCache = true
+
+; These settings control the image to display when no book cover is available.
+; If makeDynamicCovers is not false and the GD library is installed, VuFind will draw
+; cover images on the fly. Possible values: false, solid, grid
+;makeDynamicCovers = true
+
+; Otherwise, you can use noCoverAvailableImage to specify a
+; path relative to the base of your theme directory for a static image to display.
+noCoverAvailableImage = images/noCover2.gif
+
+; You can select from Syndetics, SyndeticsPlus, Amazon Editorial, Amazon, Booksite
+; and/or the Guardian
+;   Note: If the API key is omitted, e.g. "Guardian:", only the review title, byline,
+;         Guardian logo and a link to the full Guardian page will be displayed
+;   Note: The Guardian API changed in 2014; if you signed up before that date, you
+;         may need to obtain a new API key for continued access.
+;reviews         = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsID,AmazonEditorial:MyAccessKeyId,Amazon:MyAccessKeyId,Booksite,Guardian:MyGuardianKeyId
+
+; You can select from Syndetics or SyndeticsPlus
+;excerpts        = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsId
+
+; This setting can be used to hide review/excerpt tabs on the record page when
+; no content is available from the providers. By default it is turned off. You
+; can turn it on for all relevant tabs by setting it to true, or you can turn
+; it on for a comma-separated list of values (e.g. "reviews" or "excerpts" or
+; "reviews,excerpts") for selective activation. Note that hiding empty tabs will
+; make your record pages slower, since it will require extra communication with
+; content providers.
+;hide_if_empty = reviews,excerpts
+
+; You can select from Syndetics or SyndeticsPlus
+;authorNotes = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsId
+
+; You can select from Wikipedia
+; See also the AuthorInfo recommendation module setting in searches.ini; this
+; includes notes on improving the accuracy of Wikipedia retrievals.
+; Note for Windows users: If using Wikipedia, you may need to increase your Apache
+; heap size settings.  For details, see: http://vufind.org/jira/browse/VUFIND-630
+authors         = Wikipedia
+
+; You can look up your secret key by logging into http://aws.amazon.com and clicking
+; "Access Identifiers" under "Your Account".
+;amazonsecret    = MyAmazonSecretKey
+
+; You can sign up for an associate ID by logging into
+; https://affiliate-program.amazon.com .  Please make sure your instance of VuFind
+; complies with Amazon's agreements before enabling this feature.
+;amazonassociate = MyAmazonAssociateID
+
+; You can select from Google, OpenLibrary, HathiTrust.  You should consult
+; http://code.google.com/apis/books/branding.html before using Google Book Search.
+; previews       = Google,OpenLibrary,HathiTrust
+
+; Possible HathiRights options = pd,ic,op,orph,und,umall,ic-world,nobody,pdus,cc-by,cc-by-nd,
+; cc-by-nc-nd,cc-by-nc,cc-by-nc-sa,cc-by-sa,orphcand,cc-zero,und-world,icus
+; Default is "pd,ic-world" if unset here.
+; See www.hathitrust.org/rights_database#Attributes for full details
+;HathiRights    = pd,ic-world,cc-by,cc-by-nd,cc-by-nc-nd,cc-by-nc,cc-by-nc-sa,cc-by-sa,cc-zero,und-world
+
+; Possible GoogleBooks options full,partial,noview
+; options can be set for each / either of link or tab
+; Link makes a button appear in search results / record view
+; Tab makes a tab with an embedded preview appear on record view
+; Default is "GoogleOptions['link'] = full,partial" if nothing
+; is set here.
+; see code.google.com/apis/books/docs/dynamic-links.html#JSONformat
+;GoogleOptions['link']  = full,partial
+;GoogleOptions['tab']  = partial
+
+; OpenLibrary currently offers the same options/default as GoogleBooks (above):
+;OpenLibraryOptions  = full,partial
+
+; An API key is needed to interact with the Europeana API (see the EuropeanaResults
+; recommendation module in searches.ini for more information)
+;europeanaAPI = INSERTKEY
+
+; If this is set, a new map tab will show on the record page for records which
+; have long_lat data (see import/marc_local.properties for more information).
+; The setting specifies the type of map; currently, the only supported value is
+; "google"
+;recordMap = google
+
+[QRCode]
+; This setting controls the image to display when no qrcode is available.
+; The path is relative to the base of your theme directory.
+;noQRCodeAvailableImage = images/noQRCode.gif
+
+; Should we show QR codes in search results?
+;showInResults = true
+
+; Should we show QR codes on record pages?
+;showInCore = true
+
+; If you are using Syndetics Plus for *any* content, set plus = true
+; and set plus_id to your syndetics ID.  This loads the javascript file.
+; Syndetics vs. SyndeticsPlus: SyndeticsPlus has nice formatting, but loads slower
+; and requires javascript to be enabled in users' browsers.
+; set use_ssl to true if you serve your site over ssl and you
+; use SyndeticsPlus to avoid insecure content browser warnings
+; (or if you just prefer ssl)
+[Syndetics]
+use_ssl = false
+plus = false
+;plus_id = "MySyndeticsId"
+; timeout value (in seconds) for API calls:
+timeout = 10
+
+; Booksite CATS Enhanced Content - cover images, reviews, description, etc.
+[Booksite]
+url = "https://api.booksite.com"
+;key = "Key"
+
+; You can change the base Content Cafe URL used by the content services here.  Most
+; users will not need to change this setting.  You also need to set your password,
+; "pw".  Note that Content Cafe is a subscription service from Baker & Taylor.
+[Contentcafe]
+url              = "http://contentcafe2.btol.com"
+pw               = "Password"
+
+; Summon is optional; this section is used for your API credentials. apiId is the
+; short, human-readable identifier for your Summon account; apiKey is the longer,
+; non-human-readable secret key. See also the separate Summon.ini file.
+;[Summon]
+;apiId        = myAccessId
+;apiKey       = mySecretKey
+
+; WorldCat is Optional.  Worldcat offers extra features such as "Other Editions"
+; and the WorldCat searching.
+;[WorldCat]
+;id              = myAccount
+;apiKey          = ApiKey
+;OCLCCode        = MYCODE
+
+; DPLA key -- uncomment and fill in to use DPLATerms recommendations (see also
+; searches.ini).
+;[DPLA]
+;apiKey = http://dp.la/info/developers/codex/policies/#get-a-key
+
+; These settings affect OpenURL generation and presentation; OpenURLs are used to
+; help users find resources through your link resolver and to manage citations in
+; Zotero.
+[OpenURL]
+; If a resolver base URL is enabled, it will be used to link ISSNs to your link
+; resolver and to access articles in Summon if that module is enabled.  Earlier
+; versions of VuFind included some parameters as part of the URL; at this point,
+; any extra parameters will be ignored -- please provide only the base URL.
+;url             = "http://openurl.myuniversity.edu/sfx_local"
+
+; This string will be included as part of your OpenURL referer ID (the full string
+; will be "info:sid/[your rfr_id setting]:generator").  You may be able to configure
+; special behavior in your link resolver based on this ID -- for example, you may
+; wish to prevent the resolver from linking to VuFind when links came from VuFind
+; (to avoid putting a user in an infinite loop).
+rfr_id          = vufind.svn.sourceforge.net
+
+; By specifying your link resolver type, you can allow VuFind to optimize its
+; OpenURLs for a particular platform.  Current legal values: "sfx", "360link",
+; "EZB" or "other" (default is "other" if commented out).
+;resolver        = sfx
+
+; If you want OpenURL links to open in a new window, set this setting to the
+; desired Javascript window.open parameters.  If you do not want a new window
+; to open, set this to false or comment it out.
+window_settings = "toolbar=no,location=no,directories=no,buttons=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=600"
+
+; If you want to display a graphical link to your link resolver, uncomment the
+; settings below.  graphic should be a URL; graphic_width and graphic_height
+; should be sizes in pixels.
+; graphic = "http://myuniversity.edu/images/findIt.gif"
+; graphic_width = 50
+; graphic_height = 20
+
+; The following settings control where OpenURL links are displayed:
+show_in_results = true      ; include in search results
+show_in_record = false      ; include in core record metadata
+show_in_holdings = false    ; include in holdings tab of record view
+
+; If set to true, this setting will attempt to embed results from the link
+; resolver directly in search results instead of opening a new window or page.
+; This will override the window_settings option if set!  Embedding is currently
+; supported only when the resolver setting above is set to "sfx" or "360link".
+embed = false
+
+; When embed is true, you can set this to an absolute path on your system in order
+; to cache link resolver results to disk.  Be sure that the chosen directory has
+; appropriate permissions set!  Leave the setting commented out to skip caching.
+; Note that the contents of this cache will not be expired by VuFind; you should
+; set up an external process like a cron job to clear out the directory from time
+; to time.
+;resolver_cache = /usr/local/vufind/resolver_cache
+
+; This setting controls whether we should display an OpenURL link INSTEAD OF other
+; URLs associated with a record (true) or IN ADDITION TO other URLs (false).
+replace_other_urls = true
+
+; EZproxy is optional.  This section only needs to exist if you
+; are using EZProxy to provide off-site access to online materials.
+;[EZproxy]
+;host            = http://proxy.myuniversity.edu
+
+; These settings affect RefWorks record exports.  They rarely need to be changed.
+[RefWorks]
+vendor          = VuFind
+url             = http://www.refworks.com
+
+; These settings affect EndNote Web record exports.  They rarely need to be changed.
+[EndNoteWeb]
+vendor          = VuFind
+url             = https://www.myendnoteweb.com/EndNoteWeb.html
+
+; These settings affect your OAI server if you choose to use it.
+;
+; If identifier is set, its value will be used as part of the standard OAI
+; identifier prefix.  It should only ever be set to a domain name that you
+; control!  If it is not set, your ID values will not be prefixed.
+;
+; If admin_email is not set, the main email under [Site] will be used instead.
+;
+; If set_field is set, the named Solr field will be used to generate sets on
+; your OAI-PMH server.  If it is not set, sets will not be supported.
+;[OAI]
+;identifier       = myuniversity.edu
+;repository_name  = "MyUniversity Catalog"
+;admin_email      = oai@myuniversity.edu
+;set_field        = "format"
+
+; Proxy Server is Optional.
+[Proxy]
+;host = your.proxy.server
+;port = 8000
+
+; Default HTTP settings can be loaded here. These values will be passed to
+; the \Zend\Http\Client's setOptions method.
+[Http]
+;sslcapath = "/etc/ssl/certs"
+
+; Spelling Suggestions
+;
+; Note: These settings affect the VuFind side of spelling suggestions; you
+; may also wish to adjust some Solr settings in solr/biblio/conf/schema.xml
+; and solr/biblio/conf/solrconfig.xml.
+[Spelling]
+enabled = true
+; Number of suggestions to display on screen. This list is filtered from
+;   the number set in solr/biblio/conf/solrconfig.xml so they can differ.
+limit   = 3
+; Show the full modified search phrase on screen
+;   rather then just the suggested word
+phrase = false
+; Offer expansions on terms as well as basic replacements
+expand  = true
+; Turning on 'simple' spell checking will improve performance,
+;  by ignoring the more complicated 'shingle' (mini phrases)
+;  based dictionary.
+simple = false
+; This setting skips spell checking for purely numeric searches; spelling
+; suggestions on searches for ISBNs and OCLC numbers are not generally very
+; useful.
+skip_numeric = true
+
+; These settings control what events are logged and where the information is
+; stored.
+;
+; VuFind currently supports four logging levels: alert (severe fatal error),
+; error (fatal error), notice (non-fatal warning) and debug (informational).
+;
+; Each logging level can be further broken down into five levels of verbosity.
+; You can specify the desired level by adding a dash and a number after the
+; level in the configuration string -- for example, alert-2 or error-5.
+; The higher the number, the more detailed the logging messages.  If verbosity
+; is not specified, it defaults to 1 (least detailed).
+;
+; Several logging methods are available, and each may be configured to log any
+; combination of levels.
+;
+; You may enable multiple logging mechanisms if you want -- in fact, it is
+; recommended, since the failure of one logging mechanism (i.e. database down,
+; file system full) may then be reported to another.
+;
+; If database is uncommented, messages will be logged to the named MySQL table.
+; The table can be created with this SQL statement:
+; CREATE TABLE log_table ( id INT NOT NULL AUTO_INCREMENT,
+;     logtime TIMESTAMP NOT NULL, ident CHAR(16) NOT NULL,
+;     priority INT NOT NULL, message TEXT, PRIMARY KEY (id) );
+;
+; If file is uncommented, messages will be logged to the named file.  Be sure
+; that Apache has permission to write to the specified file!
+;
+; If email is uncommented, messages will be sent to the provided email address.
+; Be careful with this setting: a flood of errors can easily bog down your mail
+; server!
+[Logging]
+;database       = log_table:alert,error,notice,debug
+; NOTE : Make sure the log file exists and that Apache has write permission.
+; NOTE : Windows users should avoid drive letters (eg. c:\vufind) because
+;        the colon will be used in the string parsing. "/vufind" will work
+;file           = /var/log/vufind.log:alert,error,notice,debug
+;email          = alerts@myuniversity.edu:alert-5,error-5
+
+; This section can be used to specify a "parent configuration" from which
+; the current configuration file will inherit.  You can chain multiple
+; configurations together if you wish.
+[Parent_Config]
+; Full path to parent configuration file:
+;path = /usr/local/vufind/application/config/config.ini
+; Path to parent configuration file (relative to the location of this file):
+;relative_path = ../masterconfig/config.ini
+
+; A comma-separated list of config sections from the parent which should be
+; completely overwritten by the equivalent sections in this configuration;
+; any sections not listed here will be merged on a section-by-section basis.
+;override_full_sections = "Languages,AlphaBrowse_Types"
+
+; This section controls which language options are available to your users.
+; If you offer more than one option, a control will appear in the user
+; interface to allow user selection.  If you only activate one language,
+; the control will be hidden.
+;
+; The name of each setting below (i.e. en, de, fr) is a language code and
+; corresponds with one of the translation files found in the web/lang
+; directory.  The value of each setting is the on-screen name of the language,
+; and will itself be subject to translation through the language files!
+;
+; The order of the settings is significant -- they will be displayed on screen
+; in the same order they are defined here.
+;
+; Be sure that this section includes the default language set in the [Site]
+; section above.
+[Languages]
+en          = "English"              ; American spellings
+;en-gb       = "English"              ; British spellings
+de          = "German"
+es          = "Spanish"
+fr          = "French"
+it          = "Italian"
+ja          = "Japanese"
+nl          = "Dutch"
+pt          = "Portuguese"
+pt-br       = "Brazilian Portugese"
+zh-cn       = "Simplified Chinese"
+zh          = "Chinese"
+tr          = "Turkish"
+he          = "Hebrew"
+ga          = "Irish"
+cy          = "Welsh"
+el          = "Greek"
+ca          = "Catalan"
+eu          = "Basque"
+ru          = "Russian"
+cs          = "Czech"
+fi          = "Finnish"
+sv          = "Swedish"
+pl          = "Polish"
+da          = "Danish"
+sl          = "Slovene"
+
+; This section controls the behavior of the Browse module.  The result_limit
+; setting controls the maximum number of results that may display in any given
+; result box on the Browse screen.  You can set to -1 for no limit; however,
+; setting a very high (or no) limit may result in "out of memory" errors if you
+; have a large index!
+[Browse]
+result_limit    = 100
+tag             = true      ; allow browsing of Tags
+dewey           = false     ; allow browsing of Dewey Decimal call numbers
+lcc             = true      ; allow browsing of LC call numbers
+author          = true      ; allow browsing of authors
+topic           = true      ; allow browsing of subject headings
+genre           = true      ; allow browsing of genre subdivisions
+region          = true      ; allow browsing of region subdivisions
+era             = true      ; allow browsing of era subdivisions
+; You can use this setting to change the default alphabet provided for browsing:
+;alphabet_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+; Uncomment to sort lists alphabetically (instead of by popularity); note that
+; this will not changed the values returned -- you will still get only the
+; <result_limit> most popular entries -- it only affects display order.
+;alphabetical_order = true
+
+; This section controls which record export methods are displayed on the Record
+; view screen.  Note that some options may be disabled for records that do not
+; support them, regardless of the setting chosen here.  You can edit the separate
+; export.ini file to add new export formats and change the behavior of existing ones.
+[Export]
+RefWorks = true
+EndNote = true
+EndNoteWeb = true
+MARC = false
+MARCXML = false
+RDF = false
+BibTeX = false
+
+; This section controls whether or not display the bulk export options and which
+; options to display.  Valid methods are EndNote and MARC - The method must also
+; be enabled in Export (above) or it will not be displayed.
+[BulkExport]
+enabled = true
+options = MARC:MARCXML:EndNote:EndNoteWeb:RefWorks:BibTeX
+
+;AddThis is optional. It uses the Add This tool available from www.addthis.com
+; and requires the username generated when an analytics account is registered.
+;[AddThis]
+;key = yourUsername
+
+; This section controls how item status information is presented in search results.
+[Item_Status]
+; Usually, there is only one location or call number for each item; however, when
+; multiple values are found, there are several possible behaviors:
+;     first = display the first value found, ignore the rest
+;     all   = show all of the values found, separated by commas
+;     msg   = show a message like "Multiple Call Numbers" or "Multiple Locations"
+;     group = show availability statuses for each location on a separate line,
+;             followed by callnumber information (valid for multiple_locations only)
+multiple_call_nos = first
+multiple_locations = msg
+; Show the full location,call number, availability for each item
+; You can customize the way each item's status is display in AJAX/status-full.tpl
+; When enabled, this largely overrides multiple_call_nos and multiple_locations
+show_full_status = false
+
+; This section controls the behavior of the Record module.
+[Record]
+; Set this to true in order to enable "next" and "previous" links to navigate
+; through the current result set from within the record view.
+next_prev_navigation = false
+
+; You can enable this setting to show links to related MARC records using certain
+; 7XX fields. Just enter a comma-separated list of the MARC fields that you wish
+; to make use of.
+;marc_links = "760,765,770,772,774,773,775,777,780,785"
+; In the marc_links_link_types enter the fields you want the module to use to
+; construct the links. The module will run through the link types in order
+; until it finds one that matches. If you don't have id numbers in the fields,
+; you can also use title to construct a title based search. id represents a raw
+; bib id, dlc represents an LCCN.  Default setting:
+;marc_links_link_types = id,oclc,dlc,isbn,issn,title
+; Set use_visibility_indicator to false if you want to show links that are marked as
+; "Do not show" in the MARC record (indicator 1). Otherwise, these links will be
+; suppressed. (Default = true)
+;marc_links_use_visibility_indicator = false
+
+; You can use this setting to hide holdings information for particular named locations
+; as returned by the catalog.
+hide_holdings[] = "World Wide Web"
+
+; This array controls which Related modules are used to display sidebars on the
+; record view page.
+;
+; Available options:
+;    Editions - Alternate editions (in the Solr index) based on WorldCat lookup
+;    Similar - Similarity based on Solr lookup
+;    WorldCatEditions - Alternate editions (in the WorldCat index) based on WorldCat
+;        lookup
+;    WorldCatSimilar - Similarity based on WorldCat lookup
+related[] = "Similar"
+related[] = "Editions"
+
+; This setting controls which citations are available; set to true for all supported
+; options (default); set to false to disable citations; set to a comma-separated list
+; to activate only selected formats (available options: APA, Chicago, MLA). The
+; comma-separated list option may also be used to customize citation display order.
+;citation_formats = APA,Chicago,MLA
+
+; The following two sections control the Alphabetic Browse module.
+[AlphaBrowse]
+; This setting controls how many headings are displayed on each page of results:
+page_size = 20
+
+; This section controls the order and content of the browse type menu in the
+; Alphabetic Browse module.  The key is the browse index to use, the value is the
+; string to display to the user (subject to translation).
+[AlphaBrowse_Types]
+topic = "By Topic"
+author = "By Author"
+title = "By Title"
+lcc = "By Call Number"
+;dewey = "By Call Number"
+
+; This section controls the return of extra columns for the different browses.
+; The key is the browse index, the value is a colon-separated string of extra
+; Solr fields to return for display to the user.
+[AlphaBrowse_Extras]
+title = "author:format:publishDate"
+lcc = title
+dewey = title
+
+; This section allows you to configure the values used for Cryptography; the
+; HMACkey can be set to any value you like and should never be shared.  It is used
+; to prevent users from tampering with certain URLs (for example, "place hold" form
+; submissions)
+[Security]
+HMACkey = mySuperSecretValue
+
+; This section restricts access to the Admin module of VuFind.
+;[AdminAuth]
+; This setting can be used to restrict the Admin module to IP addresses matching a
+; regular expression; leave it commented out to allow all IP addresses.  When
+; generating regular expressions, remember that the "." character is a wildcard;
+; you have to use "\." to represent an actual dot!
+;ipRegEx = "/1\.2\.3\.4|1\.2\.3\.5/"
+; This setting can be used to restrict the Admin module to a particular set of users.
+; The userWhitelist[] setting can be repeated as many times as necessary.  If it is
+; commented out, login will not be required to access the Admin module.
+;userWhitelist[] = username1
+;userWhitelist[] = username2
+
+; This section sets global defaults for caches; file caching is used by default.
+;[Cache]
+; Set time to live value for Zend caches (in seconds), 0 means maximum possible.
+;ttl = 0
+; This setting can be used to force caching in a specific location other than the
+; default location inside the local settings directory. This directory must exist
+; and be writable by the web server.
+;cache_dir = "local/cache/"
+; Override umask for cache directories and files.
+;umask = 022
+; Permissions for Zend-created cache directories and files, subject to umask
+; Default dir_permission seems to be 0700.
+;dir_permission = 0700
+; Default file_permission seems to be 0600.
+;file_permission = 0600
+
+; This section controls the "Collections" module -- the special view for records
+; that represent collections, and the mechanism for browsing these records.
+; Collections are only supported in the blueprint and jquerymobile themes.
+;[Collections]
+; Control whether or not the collections module is enabled in search results.
+; If set to true any search results which are collection level items will
+; link to the respective collections page rather than the record page
+; (default = false).
+;collections = true
+; Control default tab of Collection view (default = CollectionList)
+;defaultTab = CollectionList
+; This controls where data is retrieved from to build the Collections/Home page.
+; It can be set to Index (use the Solr index) or Alphabetic (use the AlphaBrowse
+; index). Index is subject to "out of memory" errors if you have many (150000+)
+; collections; Alphabetic has no memory restrictions but requires generation of
+; a browse index using the index-alphabetic-browse tool.  (default = Index)
+;browseType = Index
+; This string is the delimiter used between title and ID in the hierarchy_browse
+; field of the Solr index.  Default is "{{{_ID_}}}" but any string may be used;
+; be sure the value is consistent between this configuration and your indexing
+; routines.
+;browseDelimiter = "{{{_ID_}}}"
+; This controls the page size within the Collections/Home page (default = 20).
+;browseLimit = 20
+
+; This section addresses hierarchical records in the Solr index
+[Hierarchy]
+; Name of hierarchy driver to use if no value is specified in the hierarchytype
+; field of the Solr index.
+driver = Default
+; Should we display hierarchy trees? (default = false)
+;showTree = true
+; "Search within trees" can be disabled here if set to "false" (default = true)
+search = true
+; You can limit the number of search results highlighted when searching the tree;
+; a limit is recommended if you have large trees, as otherwise large numbers of
+; results can cause performance problems.  If treeSearchLimit is -1 or not set,
+; results will be unlimited.
+treeSearchLimit = 100
+
+; This section will be used to configure the feedback module.
+; Set "tab_enabled" to true in order to enable the feedback module.
+[Feedback]
+;tab_enabled       = true
+;recipient_email   = "feedback@myuniversity.edu"
+;recipient_name    = "Your Library"
+;email_subject     = "VuFind Feedback"
+; This is the information for where feedback emails are sent from.
+;sender_email      = "noreply@vufind.org"
+;sender_name       = "VuFind Feedback"
+
+; Uncomment this section and provide your API key to enable Google Analytics. Be
+; sure to set the "universal" setting to true once your account is upgraded to
+; Universal Analytics; see:
+; https://developers.google.com/analytics/devguides/collection/upgrade/guide
+;[GoogleAnalytics]
+;apiKey = "mykey"
+;universal = false
+
+; Uncomment portions of this section to activate tabs in the search box for switching
+; between search modules. Keys are search backend names, values are labels for use in
+; the user interface (subject to translation).
+[SearchTabs]
+;Solr = Catalog
+;Summon = Summon
+;WorldCat = WorldCat
+
+; Uncomment portions of this section to label searches from particular sources in the
+; search history display.  Keys are search backend names, values are labels for use in
+; the user interface (subject to translation).
+[SearchHistoryLabels]
+;Solr = Catalog
+;Summon = Summon
+;WorldCat = WorldCat
+;SolrWeb = "Library Website"
+
+; Activate Captcha validation on select forms
+; VuFind will use reCaptcha validation to prevent bots from using certain actions of
+; your instance. See http://www.google.com/recaptcha for more information on reCaptcha
+; and create keys for your domain.
+;[Captcha]
+;publicKey  = "get your reCaptcha key at"
+;privateKey = "https://www.google.com/recaptcha/admin/create"
+; Valid theme values: red, white, blackglass, clean, custom
+; If using a custom theme, modify/override/style Service/recaptcha.phtml
+; Documentation: https://developers.google.com/recaptcha/docs/customization
+;theme      = red
+; Valid forms values: changePassword, email, newAccount, passwordRecovery, sms
+; Use * for all supported forms
+;forms = changePassword, email, newAccount, passwordRecovery, sms
+
+; This section controls VuFind's social features.
+[Social]
+; Comments may be "enabled" or "disabled" (default = "enabled")
+comments = enabled
+; Favorite lists may be "enabled", "disabled", "public_only" or "private_only"
+; (default = "enabled")
+; The public_only/private_only settings restrict the type of list users may
+; create. If you change this to a more restrictive option, it is your responsibility
+; to update the user_list database table to update the status of existing lists.
+lists = enabled
+; Tags may be "enabled" or "disabled" (default = "enabled")
+; When disabling tags, don't forget to also turn off tag search in searches.ini.
+tags = enabled
+; This controls the maximum length of a single tag; it should correspond with the
+; field size in the tags database table.
+max_tag_length = 64
+
+
+
+
+
diff --git a/local/httpd-vufind.conf b/local/httpd-vufind.conf
new file mode 100644
index 00000000000..4ddaf4609d3
--- /dev/null
+++ b/local/httpd-vufind.conf
@@ -0,0 +1,64 @@
+# Configuration for theme-specific resources:
+AliasMatch ^/vufind_eah/themes/([0-9a-zA-Z-_]*)/css/(.*)$ /usr/local/vufind2_eah/themes/$1/css/$2
+AliasMatch ^/vufind_eah/themes/([0-9a-zA-Z-_]*)/images/(.*)$ /usr/local/vufind2_eah/themes/$1/images/$2
+AliasMatch ^/vufind_eah/themes/([0-9a-zA-Z-_]*)/js/(.*)$ /usr/local/vufind2_eah/themes/$1/js/$2
+<Directory ~ "^/usr/local/vufind2_eah/themes/([0-9a-zA-Z-_]*)/(css|images|js)/">
+  <IfModule !mod_authz_core.c>
+    Order allow,deny
+    Allow from all
+  </IfModule>
+  <IfModule mod_authz_core.c>
+    Require all granted
+  </IfModule>
+  AllowOverride All
+</Directory>
+
+# Configuration for general VuFind base:
+Alias /vufind_eah /usr/local/vufind2_eah/public
+<Directory /usr/local/vufind2_eah/public/>
+  <IfModule !mod_authz_core.c>
+    Order allow,deny
+    Allow from all
+  </IfModule>
+  <IfModule mod_authz_core.c>
+    Require all granted
+  </IfModule>
+  AllowOverride All
+
+  # Uncomment the following lines, if you wish to use the Shibboleth authentication
+  #AuthType shibboleth
+  #require shibboleth
+
+  RewriteEngine On
+  RewriteBase /vufind_eah
+
+  # If using VuDL, uncomment the following line, fill in your appropriate Fedora
+  # server and port, and make sure that Apache mod_proxy and mod_proxy_http are
+  # enabled.
+  #RewriteRule ^files/(.*)/(.*) http://your-fedora-server/fedora/objects/$1/datastreams/$2/content [P]
+
+  RewriteCond %{REQUEST_FILENAME} -s [OR]
+  RewriteCond %{REQUEST_FILENAME} -l [OR]
+  RewriteCond %{REQUEST_FILENAME} -d
+  RewriteRule ^.*$ - [NC,L]
+  RewriteRule ^.*$ index.php [NC,L]
+
+  php_value short_open_tag On
+
+  # Uncomment this line to put VuFind into development mode in order to see more detailed messages:
+  #SetEnv VUFIND_ENV development
+
+  # Uncomment this line if you want to use the XHProf profiler; this is a developer-oriented option
+  # that most users will not need.  Make sure the XHProf PHP libraries are available on your include
+  # path.  See http://vufind.org/jira/browse/VUFIND-419 for more details.
+  #SetEnv VUFIND_PROFILER_XHPROF http://url/to/your/xhprof/web/interface
+
+  # This line points to the local override directory where you should place your customized files
+  # to override VuFind core features/settings.  Set to blank string ("") to disable.
+  SetEnv VUFIND_LOCAL_DIR /usr/local/vufind2_eah/local
+
+  # This line specifies additional Zend Framework 2 modules to load after the standard VuFind module.
+  # Multiple modules may be specified separated by commas.  This mechanism can be used to override
+  # core VuFind functionality without modifying core code.
+  SetEnv VUFIND_LOCAL_MODULES finc_eah
+</Directory>
diff --git a/local/import/import.properties b/local/import/import.properties
new file mode 100644
index 00000000000..b4c119f014c
--- /dev/null
+++ b/local/import/import.properties
@@ -0,0 +1,47 @@
+# Properties for the Java import program
+# $Id: vufind_config.properties $
+
+# solrmarc.solr.war.path - must point to either a war file for the version of Solr that
+# you want to use, or to a directory of jar files extracted from a Solr war files.  If
+# this is not provided, SolrMarc can only work by communicating with a running Solr server.
+# IMPORTANT NOTE FOR WINDOWS USERS:
+#      Use forward slashes, not back slashes (i.e.  c:/vufind/..., not c:\vufind\...)
+# solrmarc.solr.war.path=/usr/local/vufind2_eah/solr/jetty/webapps/solr.war
+
+# solrmarc.custom.jar.path - Jar containing custom java code to use in indexing. 
+# If solr.indexer below is defined (other than the default of org.solrmarc.index.SolrIndexer)
+# you MUST define this value to be the Jar containing the class listed there. 
+solrmarc.custom.jar.path=VuFindIndexer.jar|lib
+
+# Path to your solr instance
+solr.path = REMOTE
+solr.core.name = biblio
+solr.indexer = org.solrmarc.index.VuFindIndexer
+solr.indexer.properties = marc.properties, marc_local.properties
+
+#optional URL of running solr search engine to cause updates to be recognized.
+solr.hosturl = http://localhost:8080/solr/biblio/update
+
+#where to look for properties files, translation maps, and custom scripts
+#note that . refers to the directory where the jarfile for SolrMarc is located.
+solrmarc.path = /usr/local/vufind2_eah/local/import|/usr/local/vufind2_eah/import
+
+# Path to your marc file
+marc.to_utf_8 = true
+marc.permissive = true
+marc.default_encoding = BESTGUESS
+marc.include_errors = true
+
+# Perform Unicode normalization (ignored unless marc.to_utf_8 is true).
+#
+# Allowed values are:
+#
+#   C  - Normalization Form C (NFC)
+#   D  - Normalization Form D (NFD)
+#   KC - Normalization Form KC (NFKC)
+#   KD - Normalization Form KD (NFKD)
+#
+# For the differences of the normalization forms see the Unicode
+# Standards Annex #15, located at <http://unicode.org/reports/tr15/>.
+#
+# marc.unicode_normalize = C
diff --git a/local/import/import_auth.properties b/local/import/import_auth.properties
new file mode 100644
index 00000000000..b3612f4ad8c
--- /dev/null
+++ b/local/import/import_auth.properties
@@ -0,0 +1,47 @@
+# Properties for the Java import program (used for importing authority records)
+# $Id: import_auth.properties $
+
+# solrmarc.solr.war.path - must point to either a war file for the version of Solr that
+# you want to use, or to a directory of jar files extracted from a Solr war files.  If
+# this is not provided, SolrMarc can only work by communicating with a running Solr server.
+# IMPORTANT NOTE FOR WINDOWS USERS:
+#      Use forward slashes, not back slashes (i.e.  c:/vufind/..., not c:\vufind\...)
+# solrmarc.solr.war.path=/usr/local/vufind2_eah/solr/jetty/webapps/solr.war
+
+# solrmarc.custom.jar.path - Jar containing custom java code to use in indexing. 
+# If solr.indexer below is defined (other than the default of org.solrmarc.index.SolrIndexer)
+# you MUST define this value to be the Jar containing the class listed there. 
+solrmarc.custom.jar.path=VuFindIndexer.jar|lib
+
+# Path to your solr instance
+solr.path = REMOTE
+solr.core.name = authority
+solr.indexer = org.solrmarc.index.VuFindIndexer
+solr.indexer.properties = marc_auth.properties
+
+#optional URL of running solr search engine to cause updates to be recognized.
+solr.hosturl = http://localhost:8080/solr/authority/update
+
+#where to look for properties files, translation maps, and custom scripts
+#note that . refers to the directory where the jarfile for SolrMarc is located.
+solrmarc.path = /usr/local/vufind2_eah/local/import|/usr/local/vufind2_eah/import
+
+# Path to your marc file
+marc.to_utf_8 = true
+marc.permissive = true
+marc.default_encoding = BESTGUESS
+marc.include_errors = true
+
+# Perform Unicode normalization (ignored unless marc.to_utf_8 is true).
+#
+# Allowed values are:
+#
+#   C  - Normalization Form C (NFC)
+#   D  - Normalization Form D (NFD)
+#   KC - Normalization Form KC (NFKC)
+#   KD - Normalization Form KD (NFKD)
+#
+# For the differences of the normalization forms see the Unicode
+# Standards Annex #15, located at <http://unicode.org/reports/tr15/>.
+#
+# marc.unicode_normalize = C
diff --git a/module/finc_eah/Module.php b/module/finc_eah/Module.php
new file mode 100644
index 00000000000..4b0d3a9a9d5
--- /dev/null
+++ b/module/finc_eah/Module.php
@@ -0,0 +1,92 @@
+<?php
+/**
+ * Template for ZF2 module for storing local overrides.
+ *
+ * PHP version 5
+ *
+ * Copyright (C) Villanova University 2010.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ * @category VuFind2
+ * @package  Module
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     https://github.com/dmj/vf2-proxy
+ */
+namespace finc_eah;
+use Zend\ModuleManager\ModuleManager,
+    Zend\Mvc\MvcEvent;
+
+/**
+ * Template for ZF2 module for storing local overrides.
+ *
+ * @category VuFind2
+ * @package  Module
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     https://github.com/dmj/vf2-proxy
+ */
+class Module
+{
+    /**
+     * Get module configuration
+     *
+     * @return array
+     */
+    public function getConfig()
+    {
+        return include __DIR__ . '/config/module.config.php';
+    }
+
+    /**
+     * Get autoloader configuration
+     *
+     * @return array
+     */
+    public function getAutoloaderConfig()
+    {
+        return array(
+            'Zend\Loader\StandardAutoloader' => array(
+                'namespaces' => array(
+                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
+                ),
+            ),
+        );
+    }
+
+    /**
+     * Initialize the module
+     *
+     * @param ModuleManager $m Module manager
+     *
+     * @return void
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
+     */
+    public function init(ModuleManager $m)
+    {
+    }
+
+    /**
+     * Bootstrap the module
+     *
+     * @param MvcEvent $e Event
+     *
+     * @return void
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
+     */
+    public function onBootstrap(MvcEvent $e)
+    {
+    }
+}
diff --git a/module/finc_eah/config/module.config.php b/module/finc_eah/config/module.config.php
new file mode 100644
index 00000000000..4478ab779cb
--- /dev/null
+++ b/module/finc_eah/config/module.config.php
@@ -0,0 +1,7 @@
+<?php
+namespace finc_eah\Module\Configuration;
+
+$config = array(
+);
+
+return $config;
\ No newline at end of file
diff --git a/vufind.bat b/vufind.bat
new file mode 100644
index 00000000000..9f2bd7a7bf8
--- /dev/null
+++ b/vufind.bat
@@ -0,0 +1,4 @@
+@set VUFIND_HOME=/usr/local/vufind2_eah
+@set VUFIND_LOCAL_DIR=/usr/local/vufind2_eah/local
+@set VUFIND_LOCAL_MODULES=finc_eah
+@call run_vufind.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
\ No newline at end of file
-- 
GitLab