http://localhost:8000/api/v1/stats/discover net::ERR_CONNECTION_REFUSED
http://localhost:8000/api/v1/projects?discover_mode=true&order_by=-total_fans_last_week net::ERR_CONNECTION_REFUSED
http://localhost:8000/api/v1/projects?discover_mode=true&order_by=-total_activity_last_week net::ERR_CONNECTION_REFUSED
http://localhost:8000/api/v1/projects?discover_mode=true&is_featured=true net::ERR_CONNECTION_REFUSED
<VirtualHost *:80> ServerName taiga.mydomain.com DocumentRoot /home/taiga/taiga-front-dist/dist/
RewriteCond %{REQUEST_URI} ^/api(.*) RewriteRule .* http://127.0.0.1:8001/api%1 [P,QSA]
RewriteCond %{REQUEST_URI} ^/admin(.*) RewriteRule .* http://127.0.0.1:8001%{REQUEST_URI} [P,QSA]
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f RewriteRule . /index.html [L]
<Directory /home/taiga/taiga-front-dist/dist/> Options FollowSymLinks MultiViews AllowOverride All Order Deny,Allow Allow from All </Directory></VirtualHost>--
Please help us keep the Taiga.io Community open and inclusive, follow our Code of Conduct:
https://github.com/taigaio/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
---
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+u...@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/acbf653c-d4e4-498e-97fe-e6b06497d1e3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/f1e3a367-4275-4ba0-b0ea-0be5763cce77%40googlegroups.com.
http://taiga.mydomain.com:8000/api/v1/stats/discover net::ERR_CONNECTION_REFUSED
http://taiga.mydomain.com:8000/api/v1/projects?discover_mode=true&order_by=-total_fans_last_week net::ERR_CONNECTION_REFUSED
http://taiga.mydomain.com:8000/api/v1/projects?discover_mode=true&order_by=-total_activity_last_week net::ERR_CONNECTION_REFUSED
http://taiga.mydomain.com:8000/api/v1/projects?discover_mode=true&is_featured=true net::ERR_CONNECTION_REFUSED
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/6a83d16a-f52c-4d93-9af0-a9d2a53b6df8%40googlegroups.com.
http://taiga.mydomain.com/api/v1/auth/register
<VirtualHost *:80> ServerAdmin ad...@domain.com ServerName taiga.domain.com
#SSLEngine On #SSLCertificateChainFile /etc/ssl/certs/{chain certificate file} #SSLCACertificateFile /etc/ssl/certs/{CA certificate file} #SSLCertificateFile /etc/ssl/certs/{hostname certificate file} #SSLCertificateKeyFile /etc/ssl/private/{hostname certificate key file}
DocumentRoot /home/taiga/taiga-front-dist/dist/
Alias /static /home/taiga/taiga-back/static Alias /media /home/taiga/taiga-back/media
<Directory /home/taiga/taiga-front-dist/dist/> AllowOverride All Require all granted </Directory>
# If you have taiga directory under separate user # use MPM ITK and run the VirtualHost under correct user/group permissions <IfModule mpm_itk_module> AssignUserId taiga_ws taiga_ws </IfModule>
# For proxying you need modules "proxy", "proxy_http", "remoteip" ProxyPreserveHost On RemoteIPHeader X-Real-IP RemoteIPInternalProxy 127.0.0.0/8 ::1
<Location /api> ProxyPass http://127.0.0.1:8001/api ProxyPassReverse http://127.0.0.1:8001/api
<IfModule mod_expires.c> ExpiresActive On ExpiresDefault "now" </IfModule>/IfModule>
<IfModule mod_headers.c> Header set Cache-Control "no-cache, must-revalidate" env=no-cache-headers Header set Pragma "no-cache" env=no-cache-headers Header set Expires "Sat, 1 Jan 2000 00:00:00 GMT" env=no-cache-headers </IfModule> </Location>
<Location /admin> ProxyPass http://127.0.0.1:8001/admin ProxyPassReverse http://127.0.0.1:8001/admin
ExpiresActive On ExpiresDefault "now" Header set Cache-Control "no-cache, must-revalidate" env=no-cache-headers Header set Pragma "no-cache" env=no-cache-headers Header set Expires "Sat, 1 Jan 2000 00:00:00 GMT" env=no-cache-headers </Location>
# For "ws://" and "wss://" you need to have proxy_wstunnel module enabled <Location /events> ProxyPass ws://127.0.0.1:8888/events </Location>
# Will redirect all requests non-static, non-media, non-api and non-events (websocket) to index.html # You need mod_rewrite to be enabled
RewriteEngine on RewriteCond %{REQUEST_URI} !^/admin(.*) RewriteCond %{REQUEST_URI} !^/api(.*) RewriteCond %{REQUEST_URI} !^/events(.*) RewriteCond %{REQUEST_URI} !^/static(.*) RewriteCond %{REQUEST_URI} !^/media(.*) RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule . /index.html [L] LogLevel warn CustomLog '|/usr/bin/rotatelogs /home/taiga/logs/taiga.apache.access.log 86400' combinedLogLevel warn
CustomLog '|/usr/bin/rotatelogs /home/taiga/logs/taiga.apache.access.log 86400' combined</VirtualHost>
<VirtualHost *:80> ServerName taiga.domain.com
# Important to keep the last slash so the redirect passes relative URL correctly #RedirectPermanent / https://{hostname}/</VirtualHost>