Une page Web pour aider à rejoindre le réseau XMPP
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
pitchum ca2437504c Add MIT License 2 years ago
assets Add download button for Beagle IM 2 years ago
LICENSE Add MIT License 2 years ago
README.md Add README with a quick deploy guide 2 years ago
index.html.tpl Show/hide app buttons depending on screen width 2 years ago
invitation.cgi Allow specifying a full JID 2 years ago
screenshot_invitation_page.png Add README with a quick deploy guide 2 years ago

README.md

XMPP invitation page

Build a Web page to help people joining US on XMPP.

Example of XMPP invitation page

Quick deploy guide

Install fcgiwrap.

mkdir -p /var/www/xmpp-invitation
cd /var/www/xmpp-invitation
git clone https://forge.chapril.org/pitchum/xmpp-invitation-page.git .

Nginx snippet:

  location /invitation-beta/assets/ {
    alias  /var/www/xmpp-invitation/assets/;
  }
  location /invitation-beta/ {
    root  /var/www/xmpp-invitation/;
    index invitation.cgi;

    fastcgi_pass  unix:/run/fcgiwrap.socket;
    include /etc/nginx/fastcgi_params;
    fastcgi_param SCRIPT_FILENAME  /var/www/xmpp-invitation/invitation.cgi;
  }