diff --git a/conf/3.x/solrconfig.xml b/conf/3.x/solrconfig.xml
index e67298b..786b86b 100644
--- a/conf/3.x/solrconfig.xml
+++ b/conf/3.x/solrconfig.xml
@@ -1038,19 +1038,19 @@
        this is just a slave and remove  the <lst name="slave"> section
        if this is just a master.
     -->
-  <!--
      <requestHandler name="/replication" class="solr.ReplicationHandler" >
        <lst name="master">
+      <str name="enable">${enable.master:false}</str>
          <str name="replicateAfter">commit</str>
          <str name="replicateAfter">startup</str>
-         <str name="confFiles">schema.xml,stopwords.txt</str>
+      <str name="confFiles">${confFiles}</str>
        </lst>
        <lst name="slave">
-         <str name="masterUrl">http://localhost:8983/solr/replication</str>
-         <str name="pollInterval">00:00:60</str>
+     <str name="enable">${enable.slave:false}</str>
+     <str name="masterUrl">${masterCoreUrl}/replication</str>
+     <str name="pollInterval">${pollTime:00:00:60}</str>
        </lst>
      </requestHandler>
-    -->
 
   <!-- Search Components
 
diff --git a/conf/3.x/solrcore.properties b/conf/3.x/solrcore.properties
new file mode 100644
index 0000000..86288b5
--- /dev/null
+++ b/conf/3.x/solrcore.properties
@@ -0,0 +1,6 @@
+#solrcore.properties for this specific core
+enable.master=false
+enable.slave=false
+pollTime=00:00:60
+masterCoreUrl=http://localhost:8983/solr
+confFiles=schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml
