diff --git a/eidas-qa-proxy/overlay/opt/se/cache/.placeholder b/eidas-qa-proxy/overlay/opt/se/cache/.placeholder
new file mode 100644
index 00000000..e69de29b
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/application-se.properties b/eidas-qa-proxy/overlay/opt/se/cfg/application-se.properties
new file mode 100644
index 00000000..64233d98
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/application-se.properties
@@ -0,0 +1,116 @@
+# Logging
+logging.level.org.springframework.web=INFO
+
+# Service path
+server.servlet.context-path=/eidas-ps
+
+#proxy-service.path.prefix=${spring.config.additional.location}..
+#proxy-service.config.location=file://${spring.config.additional.location}
+
+proxy-service.image.logo=${spring.config.additional.location}/img/idp-logo.svg
+proxy-service.image.icon=${spring.config.additional.location}/img/idp-logo-notext.svg
+
+# Service port connector settings
+server.port=8443
+#server.ssl.key-store=${proxy-service.path.prefix}/keystore/sslSnakeOil.p12
+#server.ssl.key-store-type=PKCS12
+#server.ssl.key-store-password=secret
+#server.ssl.key-password=secret
+
+tomcat.ajp.port=8009
+tomcat.ajp.remoteauthentication=false
+tomcat.ajp.enabled=true
+
+# For development. Allowing signature check on metadata to be skipped. Default false.
+#proxy-service.dev.ignoreMetadataSignCheck=true
+
+# Initial delay in milliseconds (default 5000) and seconds between metadata configuration recache (default 240 sec).
+#proxy-service.daemon.inital.delay.ms=5000
+proxy-service.daemon.recache.delay.sec=240
+
+# Location of other properties files (general-metadata.properties, psidp-metadata.properties and natsp-metadata.properties)
+# Example specifying external location: 'proxy-service.config.location=file:///opt/webapp/eidas-ps/cfg/'
+# Example specifying src/main/resources config location: 'classpath:'
+
+proxy-service.country=SE
+
+# Key Store properties
+# Location can be specified as "classpath:" or as file path e.g "/opt/webapp/eidas-ps/keystore/keyStore.jks"
+proxy-service.keySourceType=PKCS12
+proxy-service.keySourceLocation=${proxy-service.path.prefix}/proxy.p12
+proxy-service.keySourcePass=dummy
+proxy-service.keySourceAlias=proxy
+
+proxy-service.natsp.keySourceType=PKCS12
+proxy-service.natsp.keySourceLocation=${proxy-service.path.prefix}/proxy.p12
+proxy-service.natsp.keySourcePass=dummy
+proxy-service.natsp.keySourceAlias=proxy
+
+proxy-service.metadata.keySourceType=PKCS12
+proxy-service.metadata.keySourceLocation=${proxy-service.path.prefix}/metadata.p12
+proxy-service.metadata.keySourcePass=dummy
+proxy-service.metadata.keySourceAlias=metadata
+
+# Session Encryption properties
+#proxy-service.cookieEncryptPw=changeme
+
+# Requirements to show consent dialogue (Default false);
+proxy-service.consent=true
+proxy-service.consent.attributes=urn:oid:1.2.752.201.3.7,\
+ urn:oid:2.5.4.4,\
+ urn:oid:2.5.4.42,\
+ urn:oid:1.3.6.1.5.5.7.9.3,\
+ urn:oid:1.3.6.1.5.5.7.9.1
+proxy-service.consent.valuetranslation=urn:oid:1.3.6.1.5.5.7.9.3
+
+# Welcome page presentation text location
+proxy-service.welcomepage.markdown=${proxy-service.path.prefix}/cfg/infotext.md
+
+#Metadata Service List location specified as either URL (http or https), "file://" or "classpath:"
+proxy-service.eidasMdListLocation=https://qa.md.eidas.swedenconnect.se/mdservicelist-aggregate.xml
+
+# Optional certificate file for validating metadata service list file signatures
+# If no certificate is specified then proxy-service.dev.ignoreMetadataSignCheck=true must be set
+proxy-service.eidasMdListCertFile=${proxy-service.path.prefix}/cfg/metadata.crt
+
+#Metadata location for aggregated metadata specified as either URL (http or https), "file://" or "classpath:"
+proxy-service.eidasMetadataLocation=https://qa.md.eidas.swedenconnect.se/role/sp.xml
+
+# Optional certificate file for validating metadata signatures
+# If no certificate is specified then proxy-service.dev.ignoreMetadataSignCheck=true must be set
+proxy-service.eidasMetadataCertFile=${proxy-service.path.prefix}/cfg/metadata.crt
+
+# Optional cache dir for caching downloaded metadata. If not set, cache is stored in memory.
+proxy-service.eidasMetadataCacheDirName=${proxy-service.path.prefix}/ps-mdcache
+
+#Metadata location for national IdP metadata specified as either URL (http or https), "file://" or "classpath:"
+
+#proxy-service.nationalMetadata.test.location=http://eid.svelegtest.se/metadata/mdx/role/idp.xml
+#proxy-service.nationalMetadata.test.certFile=${proxy-service.path.prefix}/cfg/se-metadata-cert.crt
+#proxy-service.nationalMetadata.test.cacheFile=${proxy-service.path.prefix}/cache/test-metadata.xml
+#proxy-service.nationalMetadata.test.index=1
+
+proxy-service.nationalMetadata.qa.location=https://qa.md.swedenconnect.se/role/idp.xml
+proxy-service.nationalMetadata.qa.certFile=${proxy-service.path.prefix}/cfg/metadata.crt
+proxy-service.nationalMetadata.qa.cacheFile=${proxy-service.path.prefix}/cache/qa-metadata.xml
+proxy-service.nationalMetadata.qa.index=0
+
+management.server.context-path=/manage
+management.server.security.enabled=false
+management.server.port=8444
+management.server.ssl.enabled=true
+
+proxy-service.syslog.enabled=true
+
+# Override default signature algorithms
+proxy-service.signature-algorithm=http://www.w3.org/2007/05/xmldsig-more#sha256-rsa-MGF1
+proxy-service.signature-algorithm.md=${proxy-service.signature-algorithm}
+proxy-service.signature-algorithm.natsp=http://www.w3.org/2001/04/xmldsig-more#rsa-sha256
+proxy-service.signature-algorithm.natsp.md=${proxy-service.signature-algorithm.natsp}
+
+#Private SP requests from other eIDAS countries
+proxy-service.private-sp.enabled=true
+
+#These configuration properties allow configuration of the HTTP client used to obtain metadata as well as for OpenID connect operations such as retrieving ID tokens and user-info tokens from the OP.
+proxy-service.http.connect-timeout=1000
+proxy-service.http.read-timeout=5000
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/general-metadata.properties b/eidas-qa-proxy/overlay/opt/se/cfg/general-metadata.properties
new file mode 100644
index 00000000..c179dcf4
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/general-metadata.properties
@@ -0,0 +1,18 @@
+psgen.country=${proxy-service.country}
+psgen.name=Sweden eIDAS ProxyService
+psgen.orgName={\
+ en:'Sweden Connect',\
+ sv:'Sweden Connect'\
+}
+psgen.dispName={\
+ en:'Sweden Connect QA',\
+ sv:'Sweden Connect QA'\
+}
+psgen.orgUrl=https://swedenconnect.se
+psgen.supportGivenName=Customer support
+psgen.techGivenName=Technical support
+psgen.supportEmail=operations@swedenconnect.se
+psgen.techEmail=operations@swedenconnect.se
+
+
+
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/idpdisco.properties b/eidas-qa-proxy/overlay/opt/se/cfg/idpdisco.properties
new file mode 100644
index 00000000..bf8203ae
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/idpdisco.properties
@@ -0,0 +1,67 @@
+# Available policies are: natToEidasMapping, natToEidasNotifiedMapping, justEidasLoa
+# Defined meaning:
+# - justEidasLoa = IdP is only allowed if it supports the national eIDAS LoAs
+# - natToEidasMapping = National IdP:s are allowed to respond with national LoA. These counts as non notified eID
+# - natToEidasNotifiedMapping = National IdP:s are allowed to respond with national LoA. These counts as notified eID
+
+idp.testIdp.entityid=http://qa.test.swedenconnect.se/idp
+idp.testIdp.loapolicy=justEidasLoa
+idp.testIdp.consent=true
+idp.testIdp.privateSpSupport=true
+idp.testIdp.deriveDob=false
+idp.testIdp.index=1
+
+idp.freja.entityid=https://idp-sweden-connect-valfr-2017-ct.test.frejaeid.com
+idp.freja.name.sv=Freja+
+idp.freja.name.en=Freja+
+idp.freja.loapolicy=justEidasLoa
+idp.freja.consent=false
+idp.freja.deriveDob=false
+idp.freja.privateSpSupport=true
+idp.freja.index=0
+
+idp.bankid.entityid=https://oidc.test.bankid.com
+idp.bankid.name.sv=BankID
+idp.bankid.name.en=BankID
+idp.bankid.logo.uri=https://www.bankid.com/assets/bankid/img/logo-bank-id.svg
+idp.bankid.logo.height=150
+idp.bankid.logo.width=159
+idp.bankid.loapolicy=natToEidasNotifiedMapping
+idp.bankid.consent=false
+idp.bankid.deriveDob=false
+idp.bankid.privateSpSupport=false
+idp.bankid.index=2
+idp.bankid.protocol=oidc
+
+#idp.mobIdp.entityid=https://midp.svelegtest.se/idp
+#idp.mobIdp.name.sv=Legacy Test ID Tjänst
+#idp.mobIdp.name.en=Legacy Test IdP
+#idp.mobIdp.logo.uri=${proxy-service.domain.prefix}/img/se-flag-rnd.svg
+#idp.mobIdp.logo.height=67
+#idp.mobIdp.logo.width=68
+#idp.mobIdp.loapolicy=natToEidasNotifiedMapping
+#idp.mobIdp.consent=false
+#idp.mobIdp.deriveDob=true
+#idp.mobIdp.index=2
+
+#idp.ccBankid.entityid=https://eid.identityhub.se/demo/bankid/
+#idp.ccBankid.name.sv=BankID
+#idp.ccBankid.name.en=BankID
+#idp.ccBankid.logo.uri=img/disco/bankid_logo.png
+#idp.ccBankid.logo.height=94
+#idp.ccBankid.logo.width=100
+#idp.ccBankid.loapolicy=natToEidasNotifiedMapping
+#idp.ccBankid.consent=true
+#idp.ccBankid.deriveDob=true
+#idp.ccBankid.index=3
+
+#idp.ccTelia.entityid=https://eid.identityhub.se/demo/teliabrowserplugin/
+#idp.ccTelia.name.sv=Telia
+#dp.ccTelia.name.en=Telia
+#idp.ccTelia.logo.uri=img/disco/telia_min_logo.png
+#idp.ccTelia.logo.height=89
+#idp.ccTelia.logo.width=86
+#idp.ccTelia.loapolicy=natToEidasNotifiedMapping
+#idp.ccTelia.consent=true
+#idp.ccTelia.deriveDob=true
+#idp.ccTelia.index=4
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/img/favicon.ico b/eidas-qa-proxy/overlay/opt/se/cfg/img/favicon.ico
new file mode 100644
index 00000000..2c33a9cf
Binary files /dev/null and b/eidas-qa-proxy/overlay/opt/se/cfg/img/favicon.ico differ
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo-notext.svg b/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo-notext.svg
new file mode 100644
index 00000000..037227a5
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo-notext.svg
@@ -0,0 +1,9 @@
+
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo.svg b/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo.svg
new file mode 100644
index 00000000..406331fc
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/img/idp-logo.svg
@@ -0,0 +1,17 @@
+
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue-no-text.svg b/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue-no-text.svg
new file mode 100644
index 00000000..b9930ac4
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue-no-text.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue.svg b/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue.svg
new file mode 100644
index 00000000..2dad5586
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/img/sweden-connect-color-yellow-on-blue.svg
@@ -0,0 +1,123 @@
+
+
diff --git a/eidas-qa-proxy/overlay/opt/se/cfg/infotext.md b/eidas-qa-proxy/overlay/opt/se/cfg/infotext.md
new file mode 100644
index 00000000..26b9e20b
--- /dev/null
+++ b/eidas-qa-proxy/overlay/opt/se/cfg/infotext.md
@@ -0,0 +1,38 @@
+### Proxy Service
+
+This is the Swedish proxy service of the Swedish eIDAS Pilot
+
+- Application ID: **${proxy-service.applicationId}**
+- Supported eIDAS protocol versions: **${proxy-service.eidasVersions}**
+
+**Relevant resources:**
+