Code Monkey home page Code Monkey logo

Comments (2)

miniduikboot avatar miniduikboot commented on June 10, 2024

Hi there,

Unfortunately this is an issue with Among Us 12.8 and 12.4 where it requires you to use HTTP Matchmaking. Impostor only supports HTTP Matchmaking using a plugin, Impostor.Http: https://github.com/Impostor/Impostor.http . The Docs are unfortunately lacking but let me summarize the process:

  1. Install Impostor.Http according to its installation procedure.
  2. Because you want to use Android, you need to enable HTTPS support: we recommend that this is done using a reverse proxy like Nginx or Apache. See the end of this post for an example nginx configuration
  3. Create a new regionFile or click the deeplink button again on https://impostor.github.io/Impostor/

If you run into issues, feel free to contact us on Discord, that might be faster than writing replies on GitHub.

Sorry the docs aren't great, I'm working on improving it

---8<---
Example Nginx configuration, for Debian/Ubuntu servers throw this in /etc/nginx/sites.enabled then restart nginx:

server {
    listen 443 ssl http2;
    server_name YOUR.HOSTNAME.HERE;

    # Get a free SSL certificate from Let's Encrypt using certbot: https://certbot.eff.org/
    ssl_certificate /etc/letsencrypt/live/YOUR.HOSTNAME.HERE/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/YOUR.HOSTNAME.HERE/privkey.pem;
    ssl_trusted_certificate /etc/letsencrypt/live/YOUR.HOSTNAME.HERE/fullchain.pem;

    location / {
        # Put your ListenPort from config_http.json in here, default is 22000
        proxy_pass http://localhost:22000;
        proxy_pass_header Server;
        proxy_buffering off;
        proxy_redirect off;
        proxy_set_header X-Real-IP $remote_addr;  # http://wiki.nginx.org/HttpProxyModule
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header Host $host;
        proxy_http_version 1.1;  # recommended with keepalive connections
    }

    # SSL Configuration
    # From https://ssl-config.mozilla.org/#server=nginx&version=1.16.1&config=intermediate&openssl=1.1.1d&guideline=5.6
    ssl_session_timeout 1d;
    ssl_session_cache shared:MozSSL:10m;  # about 40000 sessions
    ssl_session_tickets off;

    # curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam
    ssl_dhparam /path/to/dhparam;

    # intermediate configuration
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
    ssl_prefer_server_ciphers off;

    # HSTS (ngx_http_headers_module is required) (63072000 seconds)
    #add_header Strict-Transport-Security "max-age=63072000" always;

    # OCSP stapling
    ssl_stapling on;
    ssl_stapling_verify on;

    # replace with the IP address of your resolver
    resolver 127.0.0.1;
    # end of SSL Configuration


}

from impostor.

waki285 avatar waki285 commented on June 10, 2024

Resolved (Use Impostor.Http Plugin)

from impostor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.