Apache ProxyPass to Tomcat - URL से संदर्भ पथ कैसे निकालें?
मेरे पास अपाचे आत्मविश्वास है: <IfModule mod_ssl.c> <VirtualHost *:443> ServerName project.example.com ServerAlias ci ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPreserveHost on ProxyPass / http://localhost:1111/project SSLCertificateFile /etc/letsencrypt/live/sub.example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/sub.example.com/privkey.pem Include /etc/letsencrypt/options-ssl-apache.conf SSLCertificateChainFile /etc/letsencrypt/live/sub.example.com/chain.pem </VirtualHost> </IfModule> जब मैं प्रवेश करता हूं project.example.com, तो मुझे https://project.example.com/project/users/sign_inएक ब्राउज़र मिलता है। …