Good morning/night/evening/the time for you right now, ever since I set up Snikket, my web pages other than Snikket’s have been displaying nginx 404 not found errors. I can access the website locally but when I go to the domain name it pops up the error. When I go to localhost:443 it also shows the nginx not found 404 thing so I think that’s where my other website pages are getting the error from, but I never port fowarded port 443, at least I don’t think so. I use the standard nginx reverse proxy for Snikket, and Nginx Proxy Manager for my other web pages. I really hope someone can help me. Thank you very much in advance.

  • JASN_DE@feddit.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 hours ago

    So your native nginx process covers ports 80 and 443. which ports does your NPM use? Are you trying to use the same ports? Because that’ll most likely clash.

    • selfhostingperson@sh.itjust.worksOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 hours ago
      services:
        app:
          image: 'jc21/nginx-proxy-manager:latest'                        restart: unless-stopped
          ports:                                                            - '325:80'
            - '81:81'                                                       - '326:443'
          volumes:                                                          - ./data:/data                                                  - ./letsencrypt:/etc/letsencrypt
      

      I mean I got them portmapped to other ports so… I dunno