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
| <?php | |
| require_once '/path/to/app/autoloader.php'; | |
| ... | |
| ?> |
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
| sudo -u www-data crontab -e |
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
| Enter keystore password: | |
| Re-enter new password: | |
| What is your first and last name? | |
| [Unknown]: John Smith | |
| What is the name of your organizational unit? | |
| [Unknown]: John's Diner | |
| What is the name of your organization? | |
| [Unknown]: John's Diner | |
| What is the name of your City or Locality? | |
| [Unknown]: Paris |
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
| $JAVA_HOME/bin/keytool -genkey -alias mydomain -keyalg RSA -keystore /path/to/keystore |
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
| <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" | |
| maxThreads="150" scheme="https" secure="true" | |
| clientAuth="false" sslProtocol="TLS" | |
| keystoreFile="/path/to/keystore" | |
| keystorePass="password" /> |
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
| <?php | |
| echo "Hello World\n"; | |
| ?> |
NewerOlder