BUG/MINOR: config: use a copy of the file name in proxy configurations

Each proxy contains a reference to the original config file and line
number where it was declared. The pointer used is just a reference to
the one passed to the function instead of being duplicated. The effect
is that it is not valid anymore at the end of the parsing and that all
proxies will be enumerated as coming from the same file on some late
configuration errors. This may happen for exmaple when reporting SSL
certificate issues.

By copying using strdup(), we avoid this issue.

1.4 has the same issue, though no report of the proxy file name is done
out of the config section. Anyway a backport is recommended to ease
post-mortem analysis.
diff --git a/include/types/proxy.h b/include/types/proxy.h
index 641bc1c..9bfa68d 100644
--- a/include/types/proxy.h
+++ b/include/types/proxy.h
@@ -354,7 +354,7 @@
 	char *logformat_string;			/* log format string */
 	char *uniqueid_format_string;		/* unique-id format string */
 	struct {
-		const char *file;		/* file where the section appears */
+		char *file;			/* file where the section appears */
 		int line;			/* line where the section appears */
 		struct eb32_node id;		/* place in the tree of used IDs */
 		struct eb_root used_listener_id;/* list of listener IDs in use */