A singleton is a application scoped object where every client request uses the same object instance. With that said, it is unusual for all services in a web application to implement a singleton lifetime. Typically, you'll have a mixture of service lifetimes because not all services work the same way.
I recommend reading the Unity scope documentation to understand what Unity lifetime features are available. Then pick the an appropriate lifetime for each of your services.