10-28-2019, 02:45 PM
I already did that but no luck, this is my actual conf file.
also, I don't understand how the system is able to upload the file to the asset folder but is not able to read it after that
Code:
###########################################################
#
# Copyright (c) 2005, Southpaw Technology
# All Rights Reserved
#
# PROPRIETARY INFORMATION. This software is proprietary to
# Southpaw Technology, and is not to be reproduced, transmitted,
# or disclosed in any way without written permission.
#
#
#
# Settings for /home/apache/tactic in case this is not the Document Root
# for Windows it could be <Directory "C:/Program Files/Southpaw/Tactic">
# This should be the TACTIC_INSTALL_DIR
<Directory "/opt/tactic/tactic" >
Options FollowSymLinks
AllowOverride None
Order Allow,Deny
Allow from All
# Apache 2.4
Require all granted
</Directory>
<Directory "/mnt/tactic" >
Options FollowSymLinks
AllowOverride None
Order Allow,Deny
Allow from All
# Apache 2.4
Require all granted
</Directory>
# This is for delegating to a single server
ProxyPreserveHost on
RewriteEngine on
# Using the ProxyPass directives
<Proxy balancer://tactic>
BalancerMember http://localhost:8081/tactic
BalancerMember http://localhost:8082/tactic
BalancerMember http://localhost:8083/tactic
</Proxy>
ProxyPass /assets !
ProxyPass /context !
Proxypass /doc !
ProxyPass /tactic balancer://tactic/
ProxyPass /projects balancer://tactic/
ProxyPass / balancer://tactic/
# This is for using a customized solution in a script
#RewriteMap lb prg:C:/load_balance.pl
#RewriteRule ^/tactic/(.+)$ ${lb:$1} [P,L]
# This redirects to a common URL for centralized actions that will
# occur within tactic.
Alias /context /opt/tactic/tactic/src/context
Alias /assets /mnt/tactic/assets/
Alias /doc /opt/tactic/tactic/doc/
# Security. This will track access to every file in assets. It is still
# in testing mode.
#<Location /sthpw/assets>
# SetHandler python-program
# PythonPath "sys.path + ['/home/apache/tactic/src']"
# PythonAccessHandler asset_security
#</Location>
# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
also, I don't understand how the system is able to upload the file to the asset folder but is not able to read it after that