<HTML>
<HEAD>
<TITLE>Nova api-paste.ini??</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Hi all,<BR>
<BR>
For devstackPy I am configuring the “filter:authtoken” sections like in glance:<BR>
<BR>
[filter:authtoken]<BR>
paste.filter_factory = keystone.middleware.auth_token:filter_factory<BR>
service_host = %KEYSTONE_SERVICE_HOST%<BR>
service_port = %KEYSTONE_SERVICE_PORT%<BR>
service_protocol = %KEYSTONE_SERVICE_PROTOCOL%<BR>
auth_host = %KEYSTONE_AUTH_HOST%<BR>
auth_port = %KEYSTONE_AUTH_PORT%<BR>
auth_protocol = %KEYSTONE_AUTH_PROTOCOL%<BR>
auth_uri = %KEYSTONE_SERVICE_PROTOCOL%://%KEYSTONE_SERVICE_HOST%:%KEYSTONE_SERVICE_PORT%/<BR>
admin_token = %SERVICE_TOKEN%<BR>
<BR>
I am replacing those with actual values (using a mix of pythons config parser and regex).<BR>
<BR>
I was seeing that nova/api-paste.ini though does not have those parameterized (not all of them at least).<BR>
Is that on the plan? Should a patch be submitted?<BR>
<BR>
[filter:authtoken]<BR>
paste.filter_factory = keystone.middleware.auth_token:filter_factory<BR>
service_protocol = http<BR>
service_host = 127.0.0.1<BR>
service_port = 5000<BR>
auth_host = 127.0.0.1<BR>
auth_port = 35357<BR>
auth_protocol = http<BR>
auth_uri = <a href="http://127.0.0.1:5000/">http://127.0.0.1:5000/</a><BR>
# NOTE(vish): you will have to replace the value below with an actual admin token<BR>
admin_token = %SERVICE_TOKEN%<BR>
</SPAN></FONT>
</BODY>
</HTML>