This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################# | |
| # Author : Purexo <contact@purexo.eu> | |
| # usage : | |
| # ./script {start|stop|force-stop|restart|reload|force-reload|status} | |
| # number c'est pour le loadbalancing on va avoir plusieurs fois | |
| # le même programme de lancé, faut pouvoir fermer ce que l'on veux | |
| ################################# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* --- Author --- | |
| @Purexo | |
| /* --- ------ --- */ | |
| interface ActionConstructor { | |
| keyboard?: string[]; | |
| mButton?: number[]; | |
| gamepad?: number[]; | |
| gButton?: number[]; | |
| gAxis?: number[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server{ | |
| listen *:80; | |
| server_name server.superpowers.ralmn.fr; | |
| location / { | |
| proxy_pass http://127.0.0.1:8001; | |
| proxy_http_version 1.1; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_set_header Host $host; | |
| proxy_set_header Upgrade $http_upgrade; |
NewerOlder