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
| HTTP/1.1 200 OK | |
| Content-Type: text/xml; charset=utf-8 | |
| Content-Length: length | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
| <soap:Body> | |
| <GetPeopleDataResponse xmlns="http://tempuri.org/"> | |
| <GetPeopleDataResult> | |
| <xsd:schema>schema</xsd:schema>xml</GetPeopleDataResult> |
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
| <script type='text/javascript' src='https://public.tableau.com/javascripts/api/viz_v1.js'></script> | |
| <div class="tableauPlaceholder" id="viz1542177835902" style="position: relative;"> | |
| <noscript> | |
| <a href='#'><img alt=' ' | |
| src='https://public.tableau.com/static/images/as/aslung_portable/Dashboard1/1_rss.png' | |
| style='border: none'/></a> | |
| </noscript> | |
| <object class="tableauViz" style="display:none; width:1000px; height:827px;"> | |
| <param name="host_url" value="https%3A%2F%2Fpublic.tableau.com%2F"/> | |
| <param name="embed_code_version" value="3"/> |
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
| [xdebug] | |
| zend_extension="/opt/bitnami/php/lib/php/extensions/xdebug.so" | |
| xdebug.remote_enable=1 | |
| xdebug.remote_host=127.0.0.1 | |
| xdebug.remote_port=9000 |
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
| if (($_SERVER['HTTP_CLOUDFRONT_FORWARDED_PROTO'] == 'https') || ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) { | |
| $_SERVER['HTTPS'] = 'on'; | |
| } | |
| #If you have blow definition, please change from http to https | |
| define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST'] . '/'); | |
| define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST'] . '/'); |
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
| /* AWS */ | |
| define( 'DBI_AWS_ACCESS_KEY_ID', $_SERVER['AWS_ACCESS_KEY_ID'] ); | |
| define( 'DBI_AWS_SECRET_ACCESS_KEY', $_SERVER['AWS_SECRET_ACCESS_KEY'] ); |
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
| define('DISALLOW_FILE_MODS',true); |
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
| vi /opt/bitnami/apache2/conf/httpd.conf | |
| vi /opt/bitnami/php/etc/php.ini | |
| /opt/bitnami/ctlscript.sh restart |
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
| define('WP_SITEURL', 'http://'.$_SERVER['HTTP_HOST'].'/'); | |
| define('WP_HOME', 'http://'.$_SERVER['HTTP_HOST'].'/'); |
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
| define('AUTH_KEY', $_SERVER["AUTH_KEY"]); | |
| define('SECURE_AUTH_KEY', $_SERVER["SECURE_AUTH_KEY"]); | |
| define('LOGGED_IN_KEY', $_SERVER["LOGGED_IN_KEY"]); | |
| define('NONCE_KEY', $_SERVER["NONCE_KEY"]); | |
| define('AUTH_SALT', $_SERVER["AUTH_SALT"]); | |
| define('SECURE_AUTH_SALT', $_SERVER["SECURE_AUTH_SALT"]); | |
| define('LOGGED_IN_SALT', $_SERVER["LOGGED_IN_SALT"]); | |
| define('NONCE_SALT', $_SERVER["NONCE_SALT"]); |
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
| define('DB_NAME', $_SERVER["RDS_DB_NAME"]); | |
| define('DB_USER', $_SERVER["RDS_USERNAME"]); | |
| define('DB_PASSWORD', $_SERVER["RDS_PASSWORD"]); | |
| define('DB_HOST', $_SERVER["RDS_HOSTNAME"]); |
NewerOlder