20 lines
688 B
Text
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>
|