I am thinking that if you installed using a script, then after deleting /applications/admin, you could install a dummy web2py in another main folder, use standard linux links to your own apps, and then run this dummy web2py locally and then tunnel into it (as in the book):
nohup python dymmyweb2py.py --nogui -p 8002 -i 127.0.0.1 -a '<ask>' & and create an SSH tunnel from the local machine (the one from which you wish to access the administrative interface) to the server (the one where web2py is running, example.com), using: ssh -L 8002:127.0.0.1:8002 [email protected] Now you can access the administrative interface locally via the web browser at localhost:8002. On Monday, May 16, 2016 at 4:25:33 PM UTC-7, pbreit wrote: > > If you delete admin app can you still access appadmin? > > What would the "running locally and ssh tunneling" look like? > > > On Friday, May 13, 2016 at 12:45:13 PM UTC-7, Anthony wrote: >> >> On Friday, May 13, 2016 at 3:40:37 PM UTC-4, Alex Glaros wrote: >>> >>> how to delete? >>> >>> do I just delete this file? appadmin.py >>> <http://127.0.0.1:8000/admin/default/peek/ES2/controllers/appadmin.py?id=controllers__appadmin__py> >>> >>> >> >> No, it's the admin app -- so just delete the /applications/admin folder. >> >> Anthony >> > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

