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
| wow script: | |
| folder for each version want (ex: 1.12.1 / vanilla) | |
| script who work; | |
| ./setup-addons.sh -v 1.12.1 | |
| to download addons for 1.12.1 | |
| === Need to be execute in teh Addons folder in the good WoW vresion === |
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
| Tarkov: | |
| API in nivmizz7/api | |
| Sandbox in nivmizz7/sandbox | |
| Manager in nivmizz7/manager | |
| Docs in nivmizz7/api-docs | |
| Data in nivmizz7/tarkovdata (fork from Thaddeus) |
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 { | |
| # port | |
| listen 80; | |
| # domain | |
| server_name domain.com; | |
| location / { | |
| # prod URL (frontend) | |
| proxy_pass http://127.0.0.1:3000; |
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 { | |
| # port | |
| listen 80; | |
| # domain | |
| server_name domain.com; | |
| # path | |
| root /var/www/html; | |
| # index file | |
| index index.php index.html; |