Does Meteor only recognize the server folder @ root?

I was reading this and in the “Module Oriented” approach, I noticed that he had server/client folders nested in other folders. Is the reserved server and client folders only recognized by Meteor at the root of your project? Or can you have multiple server and client files anywhere in the project and have Meteor recognize them all?

In the manual at : Structuring your application

For public they state : "All files inside a top-level directory called public …"
For private they state : “All files inside a top-level directory called private …”

For server they state : "Any directory named server is not loaded on the client…"
For client they state : “Any directory named client is not loaded on the server…”

4 Likes