> I'm sorry, i didn't tell you version. I've tried this on today's > repository > snapshot - 1.1-dev-2025. So, sorry, but it still don't work this way.
Sorry i messed up. --inherit should be used for config templates, they are raw (unparsed) options added to the config tree. Instead of this you should use "stacked" configs (i use ini but this apply to xml too): #your_vassal.ini [uwsgi] my_config_name = %n ini = common.ini ini = common2.ini #common.ini [uwsgi] socket = /tmp/sockets/%(my_config_name) #common2.ini [uwsgi] chdir = /var/www/%(my_config_name) master = true processes = 4 -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
