Impossibile configurare il collegamento a 'Chat'. Assicurati di aver disabilitato i blocchi pubblicitari e riprova a ricaricare la pagina

Impossibile configurare il collegamento a ‘Chat’. Assicurati che gli ad-blocker siano disabilitati e prova a ricaricare la pagina.

Sto riscontrando molti errori sul mio forum discourse,

Uncaught SyntaxError: Unexpected identifier ‘#t
discourse-gamificati…df24ec1342936.js:26 Uncaught SyntaxError: Unexpected identifier ‘#a
discourse-gamificati…bc0b7464476afd.js:3 Uncaught SyntaxError: Unexpected identifier ‘#a
discourse-lazy-video…dfeb8ed6127f2.js:10 Uncaught SyntaxError: Unexpected identifier ‘#t
discourse-presence-f…f783c0d7b6fc3.js:12 Uncaught SyntaxError: Unexpected identifier ‘#s
discourse-whos-onlin…6a7b6c96d55f3.js:12 Uncaught SyntaxError: Unexpected identifier ‘#s
docker_manager_admin…db0da9a0d1924.js:11 Uncaught SyntaxError: Unexpected identifier ‘#t
poll-caab9fa7e923441…fdf6d171b8dd53.js:4 Uncaught SyntaxError: Unexpected identifier ‘#e
6fd02ed……74b887738ade31.js:5 Uncaught SyntaxError: Unexpected identifier ‘#e

Cosa c’è esattamente che non va?

Inoltre, gli indirizzi IP reali dei miei utenti non vengono visualizzati, tutti gli IP vengono visualizzati come 127.0.01

Di seguito il mio file nginx:

    # /ask discourse start
    location /ask {
        proxy_ssl_server_name       on;
        proxy_set_header Host $host; # faizan Assicura che l'header Host sia impostato correttamente.
        proxy_set_header X-Real-IP $remote_addr; # faizan aggiunto per vedere se invia l'IP reale
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto https;
        proxy_pass      http://localhost:1357/ask;
        proxy_redirect off; # faizan Assicura che eventuali reindirizzamenti non vengano alterati.

    }

    # /ask end

Sono su Cloudflare e ho anche commentato questo:

# - "templates/web.ratelimited.template.yml" commentato per risolvere l'errore 429
perché si verificavano errori di rate limiting nginx e 429 apparivano nel popup di discourse all’interno.

## I plugin vanno qui
## vedi https://meta.discourse.org/t/19157 per i dettagli
hooks:
  after_code:
    - exec:
        cd: $home/plugins
        cmd:
          - git clone https://github.com/discourse/docker_manager.git
          - git clone https://github.com/discourse/discourse-voting.git
          - git clone https://github.com/discourse/discourse-akismet.git
          - git clone https://github.com/discourse/discourse-whos-online.git
          - git clone https://github.com/discourse/discourse-gamification.git
          - git clone https://github.com/discourse/discourse-adplugin.git
          - git clone https://github.com/codergautam/disable-email-verification-discourse.git
          - git clone https://github.com/discourse/discourse-subscriptions.git
          - git clone https://github.com/discourse/discourse-follow.git
          - git clone https://github.com/discourse/discourse-cakeday.git

Ho anche disabilitato Cloudflare rocket-loader, poiché causava il blocco della pagina di discourse in un ciclo infinito di caricamento della homepage. Come posso risolvere questo problema?

Qualcuno può aiutarmi a risolvere tutti i miei problemi sopra e mostrare gli indirizzi IP reali degli utenti? Cosa manca o è sbagliato nel mio file app.yaml e nel mio file di configurazione nginx? Quali modifiche devo apportare per risolvere tutti i problemi ed errori sopra in modo permanente? Sono su Installato

3.4.0.beta1-dev

(7b14cd98c7)

Ho usato i seguenti comandi per ricostruire

cd /var/discourse
git pull

./launcher bootstrap web_only && ./launcher destroy web_only && ./launcher start web_only

./launcher rebuild data;./launcher rebuild web_only

ma non sono esattamente sicuro della differenza tra i due.

3 Mi Piace