前端项目由nginx迁移到apache httpd

前端项目由nginx迁移到apache httpd

前端项目存放目录为 /var/www/dist

虚拟主机端口80

反向代理拦截 /prod/api

后端服务地址 http://192.168.0.44:8097

java 复制代码
<VirtualHost *:80>
    DocumentRoot /var/www/dist
    ServerName www.dist.com
    <Directory /var/www/dist>
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule . index.html [L]
        SetOutputFilter DEFLATE
        Options FollowSymLinks
        AllowOverride All
        Require all granted
        DirectoryIndex index.php index.html index.htm default.php default.html default.htm
    </Directory>
    ProxyRequests off
    ProxyPass /prod-api http://192.168.0.44:8097
    ProxyPassReverse /prod-api http://192.168.0.44:8097
</VirtualHost>

小尾巴~~

只要有积累,就会有进步

相关推荐
是良辰13 小时前
Docker Nginx HTTPS 自签证书部署完整操作文档
nginx·docker·https
難釋懷17 小时前
Nginx外置缓存-redis2-nginx-module
nginx·缓存·junit
凡尘——雨落凡尘1 天前
PHP 线上十大隐形故障复盘:90% 的网站卡顿、502、雪崩,都是这些细节导致的
redis·nginx·php·session
SelectDB1 天前
基于 Apache Doris 搭建 RAG 系统:从基础 RAG 到知识图谱增强的完整实现与选型指南
apache
SelectDB1 天前
SelectDB Enterprise 4.0.5:企业级实时分析与 AI 数据底座怎么选?安全合规配置指南
apache
Deryck_德瑞克1 天前
【Nginx】配置差异分析
服务器·前端·nginx
学者猫头鹰2 天前
Nginx零基础学习手册
nginx
隔窗听雨眠2 天前
80TB电商数据迁移实录:从PostgreSQL分析困境到Apache Doris架构突围
postgresql·架构·apache
lsh曙光2 天前
Apache服务
apache
難釋懷3 天前
Nginx外置缓存-nginx + memcached
nginx·缓存·memcached