You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Robin Thoni 2d8eee162c
fixed bad rm
hace 7 meses
mongodb init hace 5 años
unifi-controller fixed bad rm hace 7 meses
.gitignore init hace 5 años
README.md README hace 5 años
docker-compose.yml limit mongodb cache hace 7 meses
env init hace 5 años

README.md

Apache config:

unifi.example.com.conf:

<IfModule mod_ssl.c>
    <VirtualHost *:80>
        ServerName unifi.example.com
        Redirect permanent / https://unifi.example.com/
        <Location /inform>
          ProxyPass http://127.0.0.1:8080/inform
          ProxyPassReverse http://127.0.0.1:8080/inform
        </Location>
    </VirtualHost>
    <VirtualHost *:443>
        Include sites-available/unifi.example.com.include

        SSLEngine on
        SSLCertificateFile /etc/ssl/private/unifi.example.com.crt
        SSLCertificateKeyFile /etc/ssl/private/unifi.example.com.key
        SSLCertificateChainFile /etc/ssl/private/unifi.example.com-chain.crt
    </VirtualHost>
</IfModule>
<IfModule !mod_ssl.c>
    <VirtualHost *:80>
        Include sites-available/unifi.example.com.include
        <Location /inform>
          ProxyPass http://127.0.0.1:8080/inform
          ProxyPassReverse http://127.0.0.1:8080/inform
        </Location>
    </VirtualHost>
</IfModule>

unifi.example.com.include:

ServerName unifi.example.com
ServerAlias unifi.example.com
ProxyPreserveHost On
ProxyRequests off
ProxyPass /wss wss://127.0.0.1:8443/wss retry=0
ProxyPassReverse /wss wss://127.0.0.1:8443/wss
ProxyPass / https://127.0.0.1:8443/
ProxyPassReverse / https://127.0.0.1:8443/
SSLProxyVerify none
SSLProxyCheckPeerName off
SSLProxyCheckPeerCN off
SSLProxyCheckPeerExpire off