<p class="MsoNoSpacing">Is there a way I can specify this in the same file
itself? I don’t want to spread this out to multiple files. </p>

<p class="MsoNoSpacing">Include a section? </p>

- Quintin<div><br><div class="gmail_quote">On Sun, Oct 28, 2012 at 10:05 AM, Barry Abrahamson <span dir="ltr"><<a href="mailto:barry@automattic.com" target="_blank">barry@automattic.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 10/27/12 11:59 PM, Quintin Par wrote:<br>
<br>
> How can I combine them into one line?<br>
<br>
</div>You *could* combine them into one line using a regex, but I would not<br>
recommend it - it will be more complicated to maintain over time and<br>
less readable.  I would recommend putting all of your common<br>
configuration directives into a separate file and including it in each<br>
individual location block.  Something like this:<br>
<br>
location = /robots.txt {<br>
        include common-config.conf;<br>
}<br>
<br>
location = /sitemap.xml {<br>
        include common-config.conf;<br>
}<br>
<br>
...<br>
<br>
I would also be sure to read the documentation on location syntax [0] to<br>
understand the differences between exact, prefix, and regex matches so<br>
you are sure to use the correct type for each pattern you are trying to<br>
match.<br>
<br>
Hope this is useful.<br>
<br>
References:<br>
0. <a href="http://nginx.org/en/docs/http/ngx_http_core_module.html#location" target="_blank">http://nginx.org/en/docs/http/ngx_http_core_module.html#location</a><br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Barry Abrahamson | Systems Wrangler | Automattic<br>
Blog: <a href="http://barry.wordpress.com" target="_blank">http://barry.wordpress.com</a><br>
<br>
</font></span><br>_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br></blockquote></div><br></div>