How to acces site without port number

What I’m trying to do:
i have nginx as reverse proxy to acces paperless with my domain like :
paperless.baudouin.im

Where I’m stuck:
to access paperless from internet (WAN) it is mandatory to add port number like this
paperless.baudouin.im:XXXX
I would like not to have to add this port number, only the URL

nginx param are
server {
listen 443;
server_name paperless.baudouin.im

location / {
    proxy_pass http://192.168.1.ZZZ: XXXX;

What I’ve already tried:
My question is it possible acces paperless without le port number in the url adresse and nginx could add at the beginning as this is alway this port

The default HTTP port is 80 and the default HTTPS port is 443: if you use either of these, you should not need to use a port when navigating to them in a URL.

Your listen parameter is listed as 443: have you configured a certificate for the web server?