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 | |
| # ======================================================================================== | |
| # Apache Guacamole Docker Installation Script | |
| # | |
| # Description: | |
| # This script automates the installation of Apache Guacamole using Docker and | |
| # Docker Compose. It handles dependency installation, configuration file generation, | |
| # and service startup. | |
| # |
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 | |
| # ================================================================= | |
| # Ubuntu RDP Server Setup Script | |
| # | |
| # This script automates the configuration of an Ubuntu server for | |
| # secure, high-performance remote desktop access using XFCE and xrdp. | |
| # | |
| # It includes: | |
| # - XFCE Desktop Environment installation |
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
| # tested on mac | |
| server { | |
| server_name main-app.dev; | |
| root /var/www/projects/main/public; | |
| add_header X-Frame-Options "SAMEORIGIN"; | |
| add_header X-XSS-Protection "1; mode=block"; | |
| add_header X-Content-Type-Options "nosniff"; |