Add/Change some default configs

Add Mobile App flow configs in config_default so would be little more
easy to enable QR code flow
diff --git a/servers/rps/config_default.py b/servers/rps/config_default.py
index 98896ef..4430e4a 100644
--- a/servers/rps/config_default.py
+++ b/servers/rps/config_default.py
@@ -109,15 +109,23 @@
 LogoutURL = '/logout'
 
 """PIN pad client options"""
-# rpsBaseURL = ''
-# rpsPrefix = 'rps'  # Default
+# Need to specify the url where the RPS is accesable like: http://<address>:<port>
+rpsBaseURL = "http://%s:%s/" % (address, port)  # URL where RPS is accesable
+rpsPrefix = 'rps'  # Default
 # setDeviceName = True
 
 """Mobile client options"""
 # mobileUseNative = True # False by default
 serviceName = "Milagro MFA Demo"
-# serviceType = "online" # Default
-# serviceIconUrl = "http://example.com/icon.jpg"
+serviceType = "online"  # Default
+serviceIconUrl = "http://example.com/icon.jpg"
+mobileService = {
+   "name": serviceName,
+   "url": rpsBaseURL,
+   "rps_prefix": rpsPrefix,
+   "logo_url": serviceIconUrl,
+   "type": serviceType
+ }
 
 """Key value storage options"""
 storage = 'memory'