salary-benchmark/deploy/apache-salary-benchmark.conf.template
DJP 468c936d30 Move URL subpath from /opt/ to /salary-benchmark/
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 20:06:56 -04:00

20 lines
688 B
Text

# Salary Benchmark — FastAPI backend at :__APP_PORT__, SPA at /var/www/html/salary-benchmark
# Include this file from the main optical-dev vhost.
ProxyTimeout 300
ProxyPass /salary-benchmark/api/ http://127.0.0.1:__APP_PORT__/api/ timeout=300
ProxyPassReverse /salary-benchmark/api/ http://127.0.0.1:__APP_PORT__/api/
Alias /salary-benchmark /var/www/html/salary-benchmark
<Directory /var/www/html/salary-benchmark>
Options -Indexes +FollowSymLinks
AllowOverride None
Require all granted
RewriteEngine On
RewriteBase /salary-benchmark/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.html [L]
</Directory>