Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!
SOLVED

403 on /nl/jsp/soaprouter.jsp in ACC 9032.10 on login using 443 apache port

Avatar

Level 4

With App server direct 8080 port its working fine.

With Apache port link in console "https://dcmidavgcf0068.epga.nam.gm.com:443" getting Error "403 on /nl/jsp/soaprouter.jsp"

Loginerror.png

In upgrade steps its told that 

Please consider adding a <urlPermission/> record in serverconf.xml.

 

I added below entries into URL permissions section of /usr/local/neolane/nl6/conf/serverConf.xml and restarted the apache and neolane services but it did not resolved the issue. 

 

<urlPermission action="" debugTrace="false">

<!-- URL mask dnsSuffix : Domain name, or domain parent, concerned by the URL urlRegEx : Regular expression to refine validating URLs belonging to this domain -->

<url dnsSuffix="dcmidavgcf0068.epga.nam.gm.com" urlRegEx=".*"/>

<url dnsSuffix="dcwndavgcf0001.epg.nam.gm.com" urlRegEx=".*"/>

<url dnsSuffix="campaign-dev.gm.com" urlRegEx=".*"/>

</urlPermission>

 

I also gave 755 permission to all files under  /usr/local/neolane/nl6. 

 

any help ?

1 Accepted Solution

Avatar

Correct answer by
Level 2

To Solve 403 Forbiddon Error Error

 

/etc/httpd/conf

Login as root

 

Change conf.

 

From

<Directory />

    AllowOverride none

    Require all denied

</Directory>

 

 

To

 

<Directory />

    AllowOverride All

    Require all granted

</Directory>

 

Restart Apache

View solution in original post

4 Replies

Avatar

Community Advisor

Hi,

 

Change Apache's conf to Allow all instead of Deny for /.

https://httpd.apache.org/docs/2.4/mod/mod_access_compat.html

 

Thanks,

-Jon

Avatar

Correct answer by
Level 2

To Solve 403 Forbiddon Error Error

 

/etc/httpd/conf

Login as root

 

Change conf.

 

From

<Directory />

    AllowOverride none

    Require all denied

</Directory>

 

 

To

 

<Directory />

    AllowOverride All

    Require all granted

</Directory>

 

Restart Apache