| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/ceagon/open-oscar-server/ |
Upload File : |
services:
cert-gen:
image: ras-certgen:latest
volumes:
- ./certs:/work/certs
working_dir: /work/certs
entrypoint: [ "/bin/sh", "-c" ]
environment:
- OSCAR_HOST=${OSCAR_HOST}
command:
- "openssl req -x509 -newkey rsa:1024
-keyout key.pem
-out cert.pem
-sha256 -days 365 -nodes
-subj \"/CN=${OSCAR_HOST}\"
&& cat cert.pem key.pem > server.pem
&& rm cert.pem key.pem"
nss-gen:
image: ras-certgen:latest
volumes:
- ./certs:/work/certs
working_dir: /work/certs
entrypoint: [ "/bin/sh", "-c" ]
command:
- "rm -rf nss
&& mkdir -p nss
&& certutil -N -d nss --empty-password
&& certutil -A -n \"RAS\" -t \"CT,,C\" -i server.pem -d nss"
open-oscar-server:
image: ras:latest
ports:
- "5190:5190"
- "8080:8080"
- "9898:9898"
- "1088:1088"
- "4000:4000/udp"
env_file:
- ./config/ssl/settings.env
volumes:
- .:/project
working_dir: /project
stunnel:
image: ras-stunnel:5.75-openssl-1.0.2u
ports:
- "443:443"
- "5193:5193"
volumes:
- ./config/ssl/stunnel.conf:/etc/stunnel/stunnel.conf:ro
- ./certs:/etc/stunnel/certs:ro
command: stunnel.conf