d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Apache2, 2 Websites, 1 Dedi Server
Add Reply New Topic New Poll
Member
Posts: 29,708
Joined: Jun 10 2010
Gold: 7,006.50
Sep 21 2023 03:25pm
I have a ubuntu apache2, I have quickbox setup and been running for awhile and wanted to switch from plex to jellyfin but jellyfin runs its own web server on port 8086 so wanted to just be simple
Code

LoadModule rewrite_module modules/mod_rewrite.so
SSLPassPhraseDialog builtin
SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000)
SSLSessionCacheTimeout 3600
#SSLMutex default
SSLRandomSeed startup file:/dev/urandom 256
SSLRandomSeed connect builtin
SSLCryptoDevice builtin

NameVirtualHost *:80
NameVirtualHost *:443

<VirtualHost *:80>
ServerName Sub1.domain.com
ServerAlias www.Sub1.domain.com

ProxyPass / http://IP:PORT/
ProxyPassReverse / http://IP:PORT/

ProxyPass /socket ws://IP:PORT/socket
ProxyPassReverse /socket ws://IP:PORT/socket

ErrorLog ${APACHE_LOG_DIR}/Sub1.domain.com.error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/Sub1.domain.com.error.log

</VirtualHost>

<VirtualHost *:80>
ServerName Sub2.domain.com
DocumentRoot "/srv/rutorrent/home"
<Directory "/srv/rutorrent/home/">
Options Indexes FollowSymLinks
AllowOverride All AuthConfig
Order allow,deny
Allow from all
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require valid-user
</Directory>
SCGIMount /cyber 127.0.0.1:41041
RewriteEngine on
RewriteCond %{SERVER_NAME} =Sub2.domain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<VirtualHost *:443>
Options +Indexes +MultiViews +FollowSymLinks
ServerName Sub2.domain.com
SSLEngine on
DocumentRoot "/srv/rutorrent/home"
<Directory "/srv/rutorrent/home/">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All AuthConfig
Order allow,deny
Allow from all
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require valid-user
</Directory>
SSLProtocol +TLSv1 +TLSv1.1 +TLSv1.2
SSLHonorCipherOrder On
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS
SetEnvIf User-Agent ".*MSIE.*"nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
SCGIMount /cyber 127.0.0.1:41041
ServerName Sub2.domain.com
SSLCertificateFile /etc/letsencrypt/live/Sub2.domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/Sub2.domain.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
SCGIMount /cyber 127.0.0.1:41041


been trying for a few days with bard.google help and jelly keeps getting the auth from box also jelly randomly gets too many redirects.

serverapache2
Member
Posts: 29,708
Joined: Jun 10 2010
Gold: 7,006.50
Sep 21 2023 06:04pm
jelly = sub1, box = sub2, sorry should of fixed my text
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll