Static Camera example in multiplayer

I would like to use a static camera as described there:

but this example only seems to work with a single player.

If I set the number of clients to “2”, the second client gets the default dynamic camera. The same happens for additional clients.

At first sight, it seems strange to use player index 0 only for the Get Player Controller call (in the upper example), but this should be the correct index even for the remote clients. I should note that the camera is correct on all clients for maybe half a second after starting, but then turns to the player. So maybe the server replicates the view target.

Could anyone tell me how to properly set up a static camera in a multiplayer environment (using Blueprints)?

I finally managed to do this, according to the hint in this question:

I created a Blueprint Subclass of PlayerController, made sure it is used (in GameMode) and simply deactivated the setting “Auto Manage Active Camera Target”. The default behaviour seems a bit strange, though…