| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/apache2/sites-enabled/ |
Upload File : |
# Redirect HTTP -> HTTPS
<VirtualHost *:80>
ServerName assets.growthnatives.com
# If you use Let's Encrypt later, Certbot will edit this block.
Redirect 302 / https://growthnatives872-my.sharepoint.com/:f:/r/personal/divaya_rana_growthnatives_com/Documents/Sales%20Sample%20SOW%27s%20%26%20NDA?csf=1&web=1&e=JphnEA
</VirtualHost>
# Main HTTPS vhost (serves only as a redirect to OneDrive)
<VirtualHost *:443>
ServerName assets.growthnatives.com
# --- SSL certs (update paths to your cert files) ---
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/assets.growthnatives.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/assets.growthnatives.com/privkey.pem
# ---------------------------------------------------
# Optional hardening
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains" env=HTTPS
# Redirect EVERYTHING under the domain to your OneDrive link
# Use 302 while testing; switch to 301 when final.
# RewriteEngine On
# If you want ONLY the root (/) to redirect, use the next line and remove the catch-all:
# RewriteRule ^/?$ https://YOUR_ONEDRIVE_SHARE_LINK [R=302,L]
# Catch-all: any path goes to the same
Redirect 302 / https://growthnatives872-my.sharepoint.com/:f:/r/personal/divaya_rana_growthnatives_com/Documents/Sales%20Sample%20SOW%27s%20%26%20NDA?csf=1&web=1&e=JphnEA
# Minimal docroot to keep Apache happy (never actually used)
DocumentRoot /var/www/empty
<Directory /var/www/empty>
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/assets_demandtech_error.log
CustomLog ${APACHE_LOG_DIR}/assets_demandtech_access.log combined
</VirtualHost>